salix/docker-compose.local.yml

36 lines
656 B
YAML
Raw Normal View History

version: "3.7"
services:
db:
image: salix-db
build:
context: db
dockerfile: Dockerfile
2023-11-15 14:47:59 +00:00
front:
image: front
build:
context: .
dockerfile: front/Dockerfile
target: development
ports:
2023-11-15 14:47:59 +00:00
- 5000:80
links:
- back
back:
image: salix-back
build:
context: .
dockerfile: Dockerfile
ports:
- 3000:3000
environment:
- NODE_ENV
2023-11-15 14:47:59 +00:00
depends_on:
- db
local:
image:
networks:
salix-stack-network:
2023-11-15 14:47:59 +00:00
driver: host