forked from lanedirt/OGameX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.prod.yml
66 lines (61 loc) · 1.36 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
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:
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
#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
#Docker Networks
networks:
app-network:
driver: bridge
#Volumes
volumes:
ogame-dbdata:
driver: local