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