-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (40 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
40 lines (40 loc) · 1.04 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
# Local development environment
version: '3.9'
services:
db:
container_name: db
image: postgres:14.2-alpine
environment:
POSTGRES_USERNAME: postgres
POSTGRES_PASSWORD: development
ports:
- "5432:5432"
oss:
container_name: oss
image: minio/minio:RELEASE.2022-02-07T08-17-33Z
environment:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: development
ports:
- "9000:9000"
- "9001:9001"
command: server --console-address ":9001" /data
mq:
container_name: mq
image: rabbitmq:3.9.13-management-alpine
environment:
RABBITMQ_DEFAULT_USER: rabbitmq
RABBITMQ_DEFAULT_PASS: development
volumes:
- ./docker/rabbitmq/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
- ./docker/rabbitmq/definitions.json:/etc/rabbitmq/definitions.json
ports:
- "5672:5672"
- "15672:15672"
imd:
container_name: imd
image: redis:6.2.6-alpine
restart: unless-stopped
ports:
- "6379:6379"
command: redis-server --requirepass "development"