-
Notifications
You must be signed in to change notification settings - Fork 47
/
docker-compose.yml
121 lines (116 loc) · 3.33 KB
/
docker-compose.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
services:
frontend:
image: joeyhsiung/starmoon-frontend:latest
pull_policy: if_not_present
build:
context: frontend
dockerfile: Dockerfile
args:
- NEXT_PUBLIC_SUPABASE_URL
- NEXT_PUBLIC_SUPABASE_ANON_KEY
- JWT_SECRET_KEY
- OPENAI_API_KEY
- GOOGLE_OAUTH
container_name: web
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
- backend-core
restart: always
ports:
- 3000:3000
environment:
NEXT_PUBLIC_SUPABASE_URL: ${NEXT_PUBLIC_SUPABASE_URL}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${NEXT_PUBLIC_SUPABASE_ANON_KEY}
JWT_SECRET_KEY: ${JWT_SECRET_KEY}
OPENAI_API_KEY: ${OPENAI_API_KEY}
GOOGLE_OAUTH: ${GOOGLE_OAUTH}
backend-core:
image: joeyhsiung/starmoon-backend:latest
pull_policy: if_not_present
env_file:
- .env
build:
context: backend
dockerfile: Dockerfile
container_name: backend-core
extra_hosts:
- "host.docker.internal:host-gateway"
# healthcheck:
# test: [ "CMD", "curl", "http://localhost:8000/healthz" ]
command:
- "poetry"
- "run"
- "uvicorn"
- "app.main:app"
- "--host"
- "0.0.0.0"
- "--port"
- "8000"
- "--ws-ping-interval"
- "600"
- "--ws-ping-timeout"
- "600"
restart: always
volumes:
- ./backend/:/app/
ports:
- 8000:8000
redis:
image: redis:7-alpine
container_name: redis
restart: always
ports:
- 6379:6379
worker:
pull_policy: if_not_present
image: joeyhsiung/starmoon-backend:latest
env_file:
- .env
build:
context: backend
dockerfile: Dockerfile
container_name: worker
extra_hosts:
- "host.docker.internal:host-gateway"
command: poetry run celery -A app.celery.worker.celery_app worker -l info
restart: always
depends_on:
- redis
beat:
image: joeyhsiung/starmoon-backend:latest
pull_policy: if_not_present
env_file:
- .env
build:
context: backend
dockerfile: Dockerfile
container_name: beat
extra_hosts:
- "host.docker.internal:host-gateway"
command: poetry run celery -A app.celery.worker.celery_app beat -l info
restart: always
depends_on:
- redis
flower:
image: joeyhsiung/starmoon-backend:latest
pull_policy: if_not_present
env_file:
- .env
build:
context: backend
dockerfile: Dockerfile
container_name: flower
extra_hosts:
- "host.docker.internal:host-gateway"
command: poetry run celery -A app.celery.worker.celery_app flower -l info --port=5555
restart: always
depends_on:
- redis
- worker
- beat
ports:
- 5555:5555
# networks:
# starmoon-network:
# driver: bridge