-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
84 lines (79 loc) 路 1.62 KB
/
Copy pathdocker-compose.yml
File metadata and controls
84 lines (79 loc) 路 1.62 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
75
76
77
78
79
80
81
82
83
84
version: "3"
services:
php:
build:
context: .
dockerfile: ./docker/php/Dockerfile
container_name: app
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www
networks:
- app-network
webserver:
image: nginx:alpine
container_name: webserver
restart: unless-stopped
tty: true
ports:
- 80:80
- 443:443
volumes:
- ./:/var/www
- ./docker/nginx/conf.d/:/etc/nginx/conf.d/
networks:
- app-network
db:
image: mariadb:10.4.11
container_name: db
restart: unless-stopped
tty: true
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: laravel
MYSQL_ALLOW_EMPTY_PASSWORD: 1
MYSQL_USER: root
volumes:
- ./docker/db/data:/var/lib/mysql
networks:
- app-network
redis:
image: redis:5.0
build:
context: .
dockerfile: ./docker/redis/Dockerfile
container_name: redis
ports:
- "6379:6379"
environment:
REDIS_HOST: redis
REDIS_PORT: 6379
volumes:
- ./docker/redis/conf/redis.conf:/usr/local/etc/redis/redis.conf
- ./docker/redis/data:/var/lib/redis
networks:
- app-network
mailhog:
build:
context: .
dockerfile: ./docker/mailhog/Dockerfile
image: mailhog/mailhog:1.0.1
container_name: mailhog
tty: true
restart: unless-stopped
ports:
- 1025:1025 # smtp server
- 8025:8025 # web ui
networks:
- app-network
networks:
app-network:
driver: bridge
#Volumes
volumes:
dbdata:
driver: local