-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.compose.yaml
More file actions
74 lines (68 loc) · 1.59 KB
/
Copy pathdev.compose.yaml
File metadata and controls
74 lines (68 loc) · 1.59 KB
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
65
66
67
68
69
70
71
72
73
74
services:
orchestrator:
tty: true
build:
context: .
dockerfile: repos/images/platform/orchestrator/dev.Dockerfile
container_name: limespaces-orchestrator
volumes:
- ".:/app"
- "/app/node_modules"
- "/app/repos/orchestrator/node_modules"
- "/app/repos/orchestrator/dist"
- "/app/repos/shared/node_modules"
- "/var/run/docker.sock:/var/run/docker.sock"
ports:
- "3001:3000"
env_file:
- ./env/orchestrator.env
networks:
- limespaces-net
dashboard:
tty: true
build:
context: .
dockerfile: repos/images/platform/dashboard/dev.Dockerfile
container_name: limespaces-dashboard
volumes:
- ".:/app"
- "/app/node_modules"
- "/app/repos/dashboard/node_modules"
- "/app/repos/dashboard/.next"
- "/app/repos/shared/node_modules"
ports:
- "3000:3000"
env_file:
- ./env/dashboard.env
networks:
- limespaces-net
postgres:
image: postgres:18
container_name: limespaces-postgres
env_file:
- ./env/postgres.env
volumes:
- ./var/postgres:/var/lib/postgresql
networks:
- limespaces-net
redis:
image: redis:8.8
container_name: limespaces-redis
volumes:
- ./var/redis:/data
env_file:
- ./env/redis.env
networks:
- limespaces-net
registry:
image: registry:2
container_name: limespaces-registry
ports:
- "5001:5000"
volumes:
- ./var/registry:/var/lib/registry
networks:
- limespaces-net
networks:
limespaces-net:
name: limespaces-net