Last active
March 14, 2019 19:49
-
-
Save bkatiemills/dbdf9f2a83b5332e76d12122859df642 to your computer and use it in GitHub Desktop.
bulletin board stack file solution part 2
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
version: '3.7' | |
services: | |
bb-app: | |
image: ${dockerId}/bb-app:v2 | |
networks: | |
- bb-net | |
bb-db: | |
image: ${dockerId}/bb-db:v2 | |
networks: | |
- bb-net | |
bb-proxy: | |
image: ${dockerId}/bb-proxy:v2 | |
ports: | |
- "80:80" | |
networks: | |
- bb-net | |
networks: | |
bb-net: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment