-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-messaging-database.yml
More file actions
52 lines (46 loc) · 1 KB
/
docker-compose-messaging-database.yml
File metadata and controls
52 lines (46 loc) · 1 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
version: "3"
services:
compose_rabbitmq:
container_name: "compose_rabbitmq"
image: rabbitmq:management
ports:
- "15672:15672"
- "5672:5672"
- "15671:15671"
- "5671:5671"
- "4369:4369"
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
compose_redis:
container_name: "compose_redis"
image: redis:7.0.0
ports:
- "6379:6379"
mariadb-service:
container_name: "mariadb"
image: mariadb:latest
ports:
- "13306:3306"
volumes:
- C:\dev\sideprojectDB\auth:/var/lib/mysql
networks:
- yul-ecommerce
environment:
- MYSQL_ROOT_PASSWORD=yula1234
- TZ=Asia/Seoul
h2db-service:
container_name: "h2"
image: oscarfonts/h2:latest
ports:
- "1521:1521"
- "8011:81"
volumes:
- C:\dev\sideprojectDB\board:/opt/h2-data
networks:
- yul-ecommerce
environment:
- H2_OPTIONS=-ifNotExists
networks:
yul-ecommerce:
external: true