Last active
January 17, 2020 13:27
-
-
Save cspinetta/718ac44cd3524df5da35af8ce5c6b718 to your computer and use it in GitHub Desktop.
Docker compose for workshop "system tools for dev"
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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Short command to download and run the latest version:
(it should be run in an empty folder)