This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
datadog: | |
apiKey: ${datadog_api_key} | |
appKey: ${datadog_app_key} | |
clusterName: ${cluster_name} | |
apm: | |
portEnabled: true | |
processAgent: | |
enabled: true | |
dogstatsd: | |
port: 8125 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#set your Organization and change top number if you want | |
ORG=ORGANIZATION | |
TOP=10 | |
# using tool of dockerhub to list repos and get tags: https://github.com/docker/hub-tool#readme | |
PATH_HUBTOOL=./hub-tool | |
REPO_DATA_PATH=dockerhub-raw-repos.data | |
REPO_DATA_LIST=repos.data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#set you organization | |
ORG=ORGANIZATION | |
# using tool of dockerhub to list repos and get tags: https://github.com/docker/hub-tool#readme | |
PATH_HUBTOOL=./hub-tool | |
REPO_DATA_PATH=dockerhub-raw-repos.data | |
REPO_DATA_LIST=repos.data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Example for the Docker Hub V2 API | |
# Returns all images and tags associated with a Docker Hub organization account. | |
# Requires 'jq': https://stedolan.github.io/jq/ | |
# set username, password, and organization | |
UNAME="" | |
UPASS="" | |
ORG="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "normalizer.h" | |
Normalizer::Normalizer() | |
{ | |
InitHash(); | |
} | |
Normalizer::~Normalizer() | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function parse_git_branch () { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
NO_COLOR="\[\033[0m\]" | |
# [Standard] Terminal with colors, path and git branch |