forked from xpdustry/imperium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
33 lines (31 loc) · 908 Bytes
/
docker-compose.yaml
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
# Docker compose file for local testing
services:
# The RabbitMQ instance for inter-server communication
# This image comes with an admin frontend available at http://localhost:15672
# login with guest:guest
rabbitmq:
image: rabbitmq:4-management
ports:
- "5672:5672"
- "15672:15672"
# The Mariadb database
# login with root:root
mariadb:
image: mariadb:latest
ports:
- "3306:3306"
environment:
MARIADB_ROOT_PASSWORD: root
# For storing shared files such as maps, admin frontend available at http://localhost:9001,
# login with minioadmin:minioadmin
minio:
image: minio/minio:latest
command: server --console-address ":9001" /data
ports:
- "9000:9000"
- "9001:9001"
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:9000/minio/health/live" ]
interval: 30s
timeout: 20s
retries: 3