-
Notifications
You must be signed in to change notification settings - Fork 25
/
docker-compose.prod.yml
95 lines (89 loc) · 1.92 KB
/
docker-compose.prod.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
services:
#PHP Service
ogame-app:
volumes:
- ./:/var/www
- ./php/local.ini:/usr/local/etc/php/conf.d/local.ini
build:
context: .
dockerfile: Dockerfile
args:
OPCACHE_ENABLE: "1" # Enable opcache in production
image: digitalocean.com/php
container_name: ogame-app
restart: unless-stopped
tty: true
environment:
CONTAINER_ROLE: app
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www
networks:
- app-network
#Nginx Service
ogame-webserver:
image: nginx:alpine
container_name: ogame-webserver
restart: unless-stopped
tty: true
volumes:
- ./:/var/www:cached
- ./nginx/conf.d/:/etc/nginx/conf.d/
- ./nginx/ssl/:/etc/nginx/ssl/
ports:
- "80:80"
- "443:443"
networks:
- app-network
#Scheduler
scheduler:
build:
context: .
dockerfile: Dockerfile
image: digitalocean.com/php
depends_on:
- ogame-webserver
volumes:
- .:/var/www/html
environment:
CONTAINER_ROLE: scheduler
networks:
- app-network
#MariaDB Service
ogame-db:
image: mariadb:11.3.2-jammy
container_name: ogame-db
restart: unless-stopped
tty: true
volumes:
- ogame-dbdata:/var/lib/mysql
- ./mysql/my.cnf:/etc/mysql/my.cnf
# MariaDB port is not exposed to the host machine in production.
environment:
MYSQL_DATABASE: laravel
MYSQL_ROOT_PASSWORD: toor
SERVICE_TAGS: dev
SERVICE_NAME: mysql
networks:
- app-network
#PHPMYADMIN
phpmyadmin:
image: phpmyadmin
restart: always
ports:
- 8080:80
environment:
- PMA_ARBITRARY=1
- PMA_HOST=ogame-db
networks:
- app-network
volumes:
- ./docker/phpmyadmin/.htaccess:/var/www/html/.htaccess
#Docker Networks
networks:
app-network:
driver: bridge
#Volumes
volumes:
ogame-dbdata:
driver: local