Added multi-project example (#1824)

Also
* Adjusted spiget wordings
This commit is contained in:
Geoff Bourne
2022-11-13 16:48:30 -06:00
committed by GitHub
parent 26368810e7
commit e22acf63e9
9 changed files with 850 additions and 4 deletions

View File

@@ -0,0 +1,2 @@
LUCKPERMS_USER=luckperms
LUCKPERMS_PASSWORD=luckpermspw

View 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: {}