-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
71 lines (64 loc) · 1.54 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
61
62
63
64
65
66
67
68
69
70
71
version: '3.7'
services:
# PHP-FPM Service
app:
build:
context: .
dockerfile: Dockerfile
container_name: app
restart: unless-stopped
tty: true
working_dir: /var/www
volumes:
- ./:/var/www
- ./docker-files/php/local.ini:/usr/local/etc/php/conf.d/local.ini
networks:
- app-network
# NGINX Service
webserver:
image: nginx:alpine
container_name: webserver
restart: unless-stopped
tty: true
ports:
- "8100:80"
- "8143:443"
volumes:
- ./:/var/www
- ./docker-files/nginx/conf.d/:/etc/nginx/conf.d/
networks:
- app-network
# MariaDB Service
db:
image: mariadb:10.5.6
container_name: db
restart: unless-stopped
tty: true
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: lumen-tut
MYSQL_ROOT_PASSWORD: 123456
volumes:
- mariadbdata:/var/lib/mysql
- ./docker-files/mysql/my.cnf:/etc/mysql/my.cnf
networks:
- app-network
# Redis Service
redis:
container_name: lumen-redis
image: redis:alpine
ports:
- 6379:6379
volumes:
- redis:/data
# Volumes
volumes:
mariadbdata:
driver: local
redis:
driver: "local"
# Networks:
networks:
app-network:
driver: bridge