1000+ DevOps Bash Scripts - AWS, GCP, Kubernetes, Docker, CI/CD, APIs, SQL, PostgreSQL, MySQL, Hive, Impala, Kafka, Hadoop, Jenkins, GitHub, GitLab, BitBucket, Azure DevOps, TeamCity, Spotify, MP3, LDAP, Code/Build Linting, pkg mgmt for Linux, Mac, Python, Perl, Ruby, NodeJS, Golang, Advanced dotfiles: .bashrc, .vimrc, .gitconfig, .screenrc, tmux..
docker pull circleci/runner
docker run -d --name devops-bash-tools circleci/runner:launch-agent
docker compose up -d
# vim:ts=2:sts=2:sw=2:et
#
# Author: Hari Sekhon
# Date: 2021-12-13 18:59:29 +0000 (Mon, 13 Dec 2021)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
# https://circleci.com/docs/2.0/runner-installation-docker/
# Set up runner token:
#
# circleci runner resource-class create <namespace>/<resource> "description" --generate-token
#
# eg.
#
# circleci runner resource-class create harisekhon/docker-runner "Docker Runner" --generate-token
# For a much more advanced setup ready to go on Kubernetes with auto-scaling, see
#
# https://github.com/HariSekhon/Kubernetes-configs
version: '2.2'
services:
circleci:
image: circleci/runner:launch-agent
# or replace with an image with built-in dependencies - see https://github/harisekhon/Dockerfiles
#image: harisekhon/circleci-runner
environment:
CIRCLECI_API_TOKEN: $CIRCLECI_API_TOKEN # use the token output by the 'runner resource-class create' command above
CIRCLECI_RESOURCE_CLASS: ${CIRCLECI_RESOURCE_CLASS:-harisekhon/docker-runner} # <namespace>/<resource>