mirror of
https://github.com/Kugelschieber/docker.git
synced 2026-01-18 06:40:26 +00:00
14 lines
257 B
YAML
14 lines
257 B
YAML
version: '3'
|
|
|
|
services:
|
|
mariadb:
|
|
image: mariadb:10.5
|
|
container_name: mariadb
|
|
restart: always
|
|
ports:
|
|
- 3307:3306
|
|
environment:
|
|
- MARIADB_ROOT_PASSWORD=root
|
|
volumes:
|
|
- /home/marvin/docker/mariadb/data:/var/lib/mysql
|