-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
80 lines (75 loc) · 1.5 KB
/
docker-compose.yml
File metadata and controls
80 lines (75 loc) · 1.5 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
75
76
77
78
79
80
services:
db:
image: postgres
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "adminpass123"
POSTGRES_DB: "stockflow"
networks:
- supabase
oauth-proxy:
image: quay.io/oauth2-proxy/oauth2-proxy
env_file:
- .env
depends_on:
- stockflow
networks:
- supabase
stockflow:
image: node:24-alpine
working_dir: /app
command: sh -c "npm install && npx nodemon src/index.ts --watch src"
volumes:
- "./stockflow:/app"
env_file:
- .env
depends_on:
- db
networks:
- supabase
# Temporary
workflow:
image: node:24-bookworm-slim
working_dir: /app
command: sh -c "npm install && npx nodemon src/app.ts --watch src"
volumes:
- "./temporal:/app"
env_file:
- .env
networks:
- supabase
traefik:
image: traefik:v3.6.9
ports:
- "8080:8080"
- "8081:8081"
volumes:
- "./config/traefik/traefik.yml:/etc/traefik/traefik.yml:ro"
networks:
- supabase
admin:
image: dpage/pgadmin4:latest
env_file:
- .env
ports:
- "8084:80"
depends_on:
- db
networks:
- supabase
n8n:
image: n8nio/n8n
env_file:
- .env
volumes:
- ./n8n:/home/node/.n8n
networks:
- supabase
temporal:
image: temporalio/temporal
command: server start-dev --ip "0.0.0.0" --ui-public-path "/temporal"
networks:
- supabase
networks:
supabase:
driver: bridge