Skip to content

Commit b234a09

Browse files
committed
IBX-10946: Included MariaDB 11.4 on CI
1 parent af2dec2 commit b234a09

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

docker/db-mariadb11.4.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Config for running mariadb in a docker stack
2+
3+
services:
4+
app:
5+
environment:
6+
- DATABASE_VERSION=11.4.9-MariaDB
7+
db:
8+
image: mariadb:11.4.9
9+
volumes:
10+
- ../../doc/docker/entrypoint/mysql/0_database_character_set.sh:/docker-entrypoint-initdb.d/0_database_character_set.sh:ro
11+
- mysql:/var/lib/mysql
12+
environment:
13+
- MYSQL_RANDOM_ROOT_PASSWORD=1
14+
- MYSQL_USER=ezp
15+
- MYSQL_PASSWORD=SetYourOwnPassword
16+
- MYSQL_DATABASE=ezp
17+
- TERM=dumb
18+
networks:
19+
- db
20+
deploy:
21+
placement:
22+
constraints: [node.role == manager]
23+
24+
volumes:
25+
mysql:
26+
27+
networks:
28+
db:
29+
attachable: true

0 commit comments

Comments
 (0)