-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
30 lines (28 loc) · 862 Bytes
/
compose.yml
File metadata and controls
30 lines (28 loc) · 862 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
services:
mysql:
container_name: mysql_bakerydemo_container_59901
image: mariadb:10.6
working_dir: /app
command:
- '--character-set-server=utf8mb4'
- '--collation-server=utf8mb4_unicode_ci'
restart: always
ports:
- 59901:3306
environment:
- MYSQL_DATABASE=bakerydemo
- MYSQL_ROOT_PASSWORD=bakerydemo
- MYSQL_USER=bakerydemo
- MYSQL_PASSWORD=bakerydemo
volumes:
- mysql_bakerydemo_volume_59901:/var/lib/mysql
redis:
image: docker.io/redis:7
container_name: redis_bakerydemo_container_56379
ports:
- 56379:6379
volumes:
- redis_bakerydemo_volume_56379:/data
volumes:
mysql_bakerydemo_volume_59901:
redis_bakerydemo_volume_56379: