-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
42 lines (38 loc) · 928 Bytes
/
Copy pathdocker-compose.dev.yaml
File metadata and controls
42 lines (38 loc) · 928 Bytes
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
# For development purposes
# See docker-compose.prod-sample.yaml if you want to run the bot
version: '3.1'
services:
db:
image: mariadb:10.3
restart: always
environment:
MYSQL_ROOT_PASSWORD: py_reportit_bot
MYSQL_DATABASE: py_reportit_bot
MYSQL_USER: py_reportit_bot
MYSQL_PASSWORD: py_reportit_bot
ports:
- 3316:3306
volumes:
- ./mysql.cnf:/etc/mysql/conf.d/py_reportit_bot.cnf
phpmyadmin:
image: phpmyadmin
restart: always
ports:
- 8080:80
depends_on:
- db
environment:
- PMA_ARBITRARY=0
- PMA_HOST=db
- PMA_USER=py_reportit_bot
- PMA_PASSWORD=py_reportit_bot
- UPLOAD_LIMIT=300M
rabbitmq:
image: rabbitmq:3-management
restart: always
ports:
- 5672:5672
- 8081:15672
environment:
RABBITMQ_DEFAULT_USER: py_reportit_bot
RABBITMQ_DEFAULT_PASS: py_reportit_bot