Initial commit
This commit is contained in:
commit
6e58b191dd
1 changed files with 20 additions and 0 deletions
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
version: '3.1'
|
||||||
|
services:
|
||||||
|
noveria_db:
|
||||||
|
image: docker.io/mariadb:lts
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
MARIADB_ROOT_PASSWORD: tbd
|
||||||
|
MARIADB_USER: tbd
|
||||||
|
MARIADB_USER_PASSWORD: tbd
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/lib/mysql
|
||||||
|
|
||||||
|
adminer_ui:
|
||||||
|
image: docker.io/adminer
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: noveria
|
Loading…
Reference in a new issue