-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (49 loc) · 1.37 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
version: "3.8"
services:
app:
# build:
# context: ./
# dockerfile: Dockerfile
image: ghcr.io/oldpersiangames/opgbackend:main
env_file:
- path: ./.env
required: true
restart: unless-stopped
ports:
# - 8000:80
- 443:443
networks:
- app-network
volumes:
- /opgactions:/opgactions
- /etc/letsencrypt/live/backend.oldpersiangames.org/fullchain.pem:/opt/docker/etc/nginx/ssl/server.crt
- /etc/letsencrypt/live/backend.oldpersiangames.org/privkey.pem:/opt/docker/etc/nginx/ssl/server.key
db:
image: mysql:8.3
restart: unless-stopped
command: --default-authentication-plugin=mysql_native_password
ports:
- 3306:3306
environment:
MYSQL_DATABASE: opg
MYSQL_ROOT_PASSWORD: 123456
MYSQL_PASSWORD: 123456
MYSQL_USER: opg
volumes:
- dbdata:/var/lib/mysql
networks:
- app-network
opgbot:
image: ghcr.io/oldpersiangames/opgbot:main
restart: unless-stopped
env_file:
- path: ./.env
required: true
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
dbdata:
driver: local