Skip to content

Commit b729562

Browse files
committed
Compose file
1 parent 4333149 commit b729562

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

composes/mariadb/docker-compose.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: '3.8'
2+
3+
services:
4+
mariadb:
5+
image: mariadb:latest
6+
container_name: mariadb
7+
environment:
8+
MARIADB_ROOT_PASSWORD: my-secret-pw
9+
ports:
10+
- "3306:3306"
11+
volumes:
12+
- mariadb_data:/var/lib/mysql
13+
14+
volumes:
15+
mariadb_data:

0 commit comments

Comments
 (0)