addet mariadb container
This commit is contained in:
commit
1d85013ae2
2 changed files with 13 additions and 0 deletions
2
mariadb/.env
Normal file
2
mariadb/.env
Normal file
|
@ -0,0 +1,2 @@
|
|||
MARIADB_ROOT_PASSWORD=supersecurepassword
|
||||
ADMINER_PORT=9443
|
11
mariadb/docker-compose.yml
Normal file
11
mariadb/docker-compose.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
services:
|
||||
|
||||
db:
|
||||
image: mariadb
|
||||
restart: unless-stopped
|
||||
|
||||
adminer:
|
||||
image: adminer
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${ADMINER_PORT}:8080
|
Loading…
Add table
Add a link
Reference in a new issue