-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
60 lines (55 loc) · 1.21 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
version: '2.0'
services:
app:
build:
context: .
dockerfile: Dockerfile
image: cloudsigma.com/php
container_name: your_site_app
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www/html/
volumes:
- ./app/:/var/www/html
- ./volumes/php/your_site.ini:/usr/local/etc/php/conf.d/your_site.ini
networks:
- app-network
webserver:
image: nginx:alpine
container_name: your_site_webserver
restart: unless-stopped
tty: true
ports:
- "8780:80"
- "8443:443"
volumes:
- ./app/:/var/www/html/
- ./volumes/nginx/conf.d/:/etc/nginx/conf.d/
networks:
- app-network
db:
image: mysql:5.7.32
container_name: your_site_db
restart: unless-stopped
tty: true
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: your_site
MYSQL_ROOT_PASSWORD: your_site_pass
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- ./volumes/mysql/data:/var/lib/mysql/
- ./volumes/mysql/my.cnf:/etc/mysql/my.cnf
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
dbdata:
driver: local