mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-05-01 01:39:27 +00:00
2
examples/multi-project/dbs/.env
Normal file
2
examples/multi-project/dbs/.env
Normal file
@@ -0,0 +1,2 @@
|
||||
LUCKPERMS_USER=luckperms
|
||||
LUCKPERMS_PASSWORD=luckpermspw
|
||||
21
examples/multi-project/dbs/docker-compose.yml
Normal file
21
examples/multi-project/dbs/docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
mariadb:
|
||||
image: mariadb:10
|
||||
environment:
|
||||
MARIADB_RANDOM_ROOT_PASSWORD: yes
|
||||
MARIADB_DATABASE: luckperms
|
||||
# These are loaded by compose from .env
|
||||
MARIADB_USER: ${LUCKPERMS_USER}
|
||||
MARIADB_PASSWORD: ${LUCKPERMS_PASSWORD}
|
||||
volumes:
|
||||
- mariadb:/var/lib/mysql
|
||||
|
||||
adminer:
|
||||
image: adminer
|
||||
ports:
|
||||
- "8806:8080"
|
||||
|
||||
volumes:
|
||||
mariadb: {}
|
||||
Reference in New Issue
Block a user