Created
December 2, 2015 15:40
-
-
Save tanob/03c5ac3fb3f9c5ff2c1f to your computer and use it in GitHub Desktop.
Simple docker-compose to get GoCD server & agent running
This file contains hidden or 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
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