Skip to content

Instantly share code, notes, and snippets.

@cspinetta
Last active January 17, 2020 13:27
Show Gist options
  • Save cspinetta/718ac44cd3524df5da35af8ce5c6b718 to your computer and use it in GitHub Desktop.
Save cspinetta/718ac44cd3524df5da35af8ce5c6b718 to your computer and use it in GitHub Desktop.
Docker compose for workshop "system tools for dev"
version: '3.4'
services:
external-api:
image: cspinetta/workshop-external-api:0.1
network_mode: "host"
# ports:
# - "9290:9290"
internal-api:
image: cspinetta/workshop-internal-api:0.1
network_mode: "host"
# ports:
# - "9200:9200"
environment:
- FIX=$FIX
@cspinetta
Copy link
Author

Short command to download and run the latest version:

wget -O docker-compose.yml 'https://gist.github.com/cspinetta/718ac44cd3524df5da35af8ce5c6b718/raw/docker-compose-workshop-troubleshooting.yml' && docker-compose up

(it should be run in an empty folder)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment