forked from docker/awesome-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set different networks for db-backend and backend-proxy
Signed-off-by: Anca Iordache <[email protected]>
- Loading branch information
Anca Iordache
committed
Mar 19, 2020
1 parent
8717298
commit aed528c
Showing
3 changed files
with
35 additions
and
22 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,40 @@ | ||
version: "3.7" | ||
services: | ||
backend: | ||
build: backend | ||
secrets: | ||
- db-password | ||
ports: | ||
- 5000:5000 | ||
db: | ||
environment: | ||
MYSQL_DATABASE: example | ||
MYSQL_ROOT_PASSWORD_FILE: /run/secrets/db-password | ||
image: mysql:8.0.19 | ||
command: '--default-authentication-plugin=mysql_native_password' | ||
restart: always | ||
secrets: | ||
- db-password | ||
volumes: | ||
- db-data:/var/lib/mysql | ||
networks: | ||
- backnet | ||
environment: | ||
- MYSQL_DATABASE=example | ||
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db-password | ||
backend: | ||
build: backend | ||
restart: always | ||
secrets: | ||
- db-password | ||
ports: | ||
- 5000:5000 | ||
networks: | ||
- backnet | ||
- frontnet | ||
proxy: | ||
build: proxy | ||
restart: always | ||
ports: | ||
- 8080:80 | ||
- 80:80 | ||
networks: | ||
- frontnet | ||
volumes: | ||
db-data: {} | ||
db-data: | ||
secrets: | ||
db-password: | ||
file: db/password.txt | ||
networks: | ||
backnet: | ||
frontnet: |