Skip to content

Instantly share code, notes, and snippets.

@tanob
Created December 2, 2015 15:40
Show Gist options
  • Save tanob/03c5ac3fb3f9c5ff2c1f to your computer and use it in GitHub Desktop.
Save tanob/03c5ac3fb3f9c5ff2c1f to your computer and use it in GitHub Desktop.
Simple docker-compose to get GoCD server & agent running
server:
image: gocd/gocd-server
hostname: go-server # Needed so the go-agent can find the server
ports:
- '8153:8153'
- '8154:8154'
agent:
image: gocd/gocd-agent
links:
- server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment