-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·74 lines (69 loc) · 1.63 KB
/
Copy pathdocker-compose.yml
File metadata and controls
executable file
·74 lines (69 loc) · 1.63 KB
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
version: '3'
services:
#PHP Service
app:
build:
context: .
dockerfile: ./docker/php-fpm/Dockerfile
image: digitalocean.com/php
container_name: "${DOCKER_PREFIX}-app"
restart: unless-stopped
tty: true
depends_on:
- db
environment:
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www
user: "1000:1000"
volumes:
- ./app:/var/www
- ./docker/php-fpm/local.ini:/usr/local/etc/php/conf.d/local.ini
- ./docker/php-fpm/supervisor-workers.conf:/etc/supervisor/conf.d/supervisor-workers.conf
networks:
- app-network
#MySQL Service
db:
image: mysql:8.0.15
container_name: "${DOCKER_PREFIX}-db"
restart: unless-stopped
tty: true
command:
--default-authentication-plugin=mysql_native_password
--performance-schema --secure-file-priv=""
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: ${DB_DATABASE}
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- dbdata:/var/lib/mysql/
- ./docker/mysql/my.cnf:/etc/mysql/my.cnf
networks:
- app-network
#Nginx Service
webserver:
image: nginx:alpine
container_name: "${DOCKER_PREFIX}-server"
restart: unless-stopped
tty: true
depends_on:
- app
ports:
- "80:80"
volumes:
- ./app:/var/www
- ./docker/nginx/local.conf:/etc/nginx/conf.d/default.conf
- /etc/letsencrypt:/etc/letsencrypt/live/laravel.loc/
networks:
- app-network
#Docker Networks
networks:
app-network:
driver: bridge
#Volumes
volumes:
dbdata:
driver: local