-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
53 lines (48 loc) · 1.04 KB
/
compose.yaml
File metadata and controls
53 lines (48 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
41
42
43
44
45
46
47
48
49
50
51
52
53
name: plugboard
services:
rabbitmq:
image: rabbitmq:4.0-rc-management-alpine
container_name: rabbitmq
ports:
- 5672:5672
- 15672:15672
volumes:
- rabbitmq-data:/var/lib/rabbitmq
networks:
- main
environment:
- RABBITMQ_DEFAULT_USER=user
- RABBITMQ_DEFAULT_PASS=password
restart: always
postgres:
image: postgres:18-alpine
container_name: postgres
environment:
- POSTGRES_USER=plugboard
- POSTGRES_PASSWORD=plugboard
- POSTGRES_DB=plugboard
ports:
- 5432:5432
volumes:
- postgres-data:/var/lib/postgresql/data
networks:
- main
restart: always
valkey:
image: valkey/valkey:8.0-alpine
container_name: valkey
command: valkey-server --dir /var/lib/valkey --bind 0.0.0.0 -::1 --protected-mode no
ports:
- 6379:6379
volumes:
- valkey-data:/var/lib/valkey
networks:
- main
restart: always
networks:
main:
driver: bridge
volumes:
rabbitmq-data:
postgres-data:
valkey-data: