-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.dev.yml
64 lines (56 loc) · 1.12 KB
/
docker-compose.dev.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: "3.8"
services:
dagit:
build:
context: ./dagster
dockerfile: Dockerfile.dagster
ports:
- "4002:4002"
dagster_daemon:
build:
context: ./dagster
dockerfile: Dockerfile.dagster
valmi-db:
ports:
- "5432:5432"
valmi-repo:
build:
context: ./dagster
dockerfile: Dockerfile.usercode
valmi-activation:
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:8000"
container_name: valmi-activation
volumes:
- .:/workspace:z
valmi-app-backend:
build:
context: ./valmi-app-backend
dockerfile: Dockerfile
volumes:
- ./valmi-app-backend:/workspace:z
valmi-app:
build:
context: ./valmi-app
dockerfile: Dockerfile
env_file:
- ./valmi-app/.env
ports:
- "3000:3000"
container_name: valmi-app
restart: on-failure
networks:
- valmi-network
depends_on:
- valmi-db
- valmi-app-backend
volumes:
- ./valmi-app:/workspace:z
- ./valmi-app/.env:/app/.env
networks:
valmi-network:
driver: bridge
name: valmi-network