Created
August 17, 2022 18:48
-
-
Save mreferre/7dcd92d0daa50c96f55231e89c30c391 to your computer and use it in GitHub Desktop.
Acornfile
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
args: { | |
scale_ui: 2 | |
scale_appserver: 3 | |
} | |
containers: { | |
"yelb-ui": { | |
image: "mreferre/yelb-ui:0.7" | |
scale: args.scale_ui | |
ports: | |
publish: "80/http" | |
dependsOn: "yelb-appserver" | |
} | |
"yelb-appserver": { | |
image: "mreferre/yelb-appserver:0.5" | |
scale: args.scale_appserver | |
ports: "4567/tcp" | |
dependsOn: [ | |
"redis-server", | |
"yelb-db" | |
] | |
} | |
"redis-server": { | |
image: "redis:4.0.2" | |
ports: "6379/tcp" | |
} | |
"yelb-db": { | |
image: "mreferre/yelb-db:0.5" | |
ports: "5432/tcp" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment