You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
315 B
15 lines
315 B
1 year ago
|
version: '3.1'
|
||
|
services:
|
||
|
mariadb:
|
||
|
image: linuxserver/mariadb:latest
|
||
|
container_name: "mariadb"
|
||
|
restart: always
|
||
|
environment:
|
||
|
MYSQL_PASSWORD: "<passwort>"
|
||
|
MYSQL_ROOT_PASSWORD: "<passwort>"
|
||
|
TZ: "Europe/Berlin"
|
||
|
ports:
|
||
|
- "3306:3306"
|
||
|
volumes:
|
||
|
- /opt/mariadb:/config
|