-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (36 loc) · 832 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (36 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
express:
build:
context: .
dockerfile: Dockerfile
container_name: drawthings-express
ports:
- "3002:3002"
volumes:
- ~/Workspace/drawthings-ui:/app
environment:
- CONFIG_PATH=/app/config/config.yaml
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
networks:
- drawthings-network
backend:
build:
context: .
dockerfile: server/Dockerfile
container_name: drawthings-backend
ports:
- "8002:8002"
volumes:
- ~/Workspace/drawthings-ui:/app
environment:
- CONFIG_PATH=/app/config/config.yaml
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
networks:
- drawthings-network
networks:
drawthings-network:
driver: bridge