refs #5739 perf: same network
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Javier Segarra 2023-11-15 15:47:59 +01:00
parent cbcab64f8b
commit c5c2252a74
1 changed files with 15 additions and 17 deletions

View File

@ -5,23 +5,6 @@ services:
build:
context: db
dockerfile: Dockerfile
ports:
- 3306:3306
networks:
- salix-stack-network
back:
image: salix-back
build:
context: .
dockerfile: Dockerfile
networks:
- salix-stack-network
ports:
- 3000:3000
depends_on:
- db
environment:
- NODE_ENV
front:
image: front
build:
@ -29,6 +12,21 @@ services:
dockerfile: front/Dockerfile
ports:
- 5000:80
links:
- back
back:
image: salix-back
build:
context: .
dockerfile: Dockerfile
ports:
- 3000:3000
environment:
- NODE_ENV
depends_on:
- db
networks:
salix-stack-network:
driver: host