-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
48 lines (46 loc) · 957 Bytes
/
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
version: "3.9"
services:
bot:
build:
dockerfile: docker/gadoneko/Dockerfile
target: bot
image: ghcr.io/pjatk21/gadoneko-bot:latest
env_file:
- .production.env
depends_on:
- mongol
- webpanel
restart: unless-stopped
volumes:
- data:/pjatk/data
celery:
build:
dockerfile: docker/gadoneko/Dockerfile
target: celery
image: ghcr.io/pjatk21/gadoneko-celery:latest
env_file:
- .production.env
depends_on:
- mongol
restart: unless-stopped
volumes:
- data:/pjatk/data
webpanel:
build:
dockerfile: docker/gadoneko/Dockerfile
target: web
image: ghcr.io/pjatk21/gadoneko-web:latest
ports:
- '8000:8000'
env_file:
- .production.env
depends_on:
- mongol
restart: unless-stopped
volumes:
- data:/pjatk/data
mongol:
image: mongo:latest
restart: unless-stopped
volumes:
data: