-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
102 lines (97 loc) · 2.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
services:
# image project
app:
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
container_name: app
working_dir: /var/www/
volumes:
- ./:/var/www
depends_on:
- redis
networks:
- thoth
# nginx
nginx:
image: nginx:alpine
container_name: nginx
restart: unless-stopped
ports:
- "8989:80"
volumes:
- ./:/var/www
- ./docker/nginx/:/etc/nginx/conf.d/
networks:
- thoth
# db mysql
db:
image: mysql:5.7.22
container_name: db
restart: unless-stopped
environment:
MYSQL_DATABASE: ${DB_DATABASE:-thoth}
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD:-root}
MYSQL_PASSWORD: ${DB_PASSWORD:-userpass}
MYSQL_USER: ${DB_USERNAME:-username}
volumes:
- ./.docker/mysql/dbdata:/var/lib/mysql
ports:
- "3306:3306"
networks:
- thoth
ulimits:
nproc: 65535
nofile:
soft: 20000
hard: 40000
#phpmyadmin
db-phpmyadmin:
depends_on:
- db
image: phpmyadmin:apache
container_name: db-phpmyadmin
restart: always
ports:
- 8080:80
environment:
PMA_USER: root
PMA_PASSWORD: root
PMA_HOST: db
UPLOAD_LIMIT: 256M
networks:
- thoth
# mailhog
thoth-mailhog:
image: mailhog/mailhog
container_name: thoth-mailhog
logging:
driver: 'none'
ports:
- 1025:1025 # smtp server
- 8025:8025 # web ui
networks:
- thoth
# queue
queue:
image: especializati/laravel9-app
container_name: queue
restart: unless-stopped
command: "php artisan queue:work"
volumes:
- ./:/var/www
depends_on:
- redis
- app
networks:
- thoth
# redis
redis:
image: redis:latest
container_name: redis
networks:
- thoth
networks:
thoth:
driver: bridge