chore: 🚸 add phpmyadmin to make it easier for bot hosters to see the database and modify it if wanted
This commit is contained in:
parent
416be0d895
commit
0965a443c2
1 changed files with 15 additions and 4 deletions
|
@ -1,14 +1,27 @@
|
|||
version: "3.7"
|
||||
|
||||
services:
|
||||
app:
|
||||
container_name: app
|
||||
xyter:
|
||||
container_name: xyter
|
||||
image: zyner/xyter:main
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
volumes:
|
||||
- ./logs:/logs
|
||||
depends_on:
|
||||
- mariadb
|
||||
|
||||
phpmyadmin:
|
||||
container_name: phpmyadmin
|
||||
image: phpmyadmin:5
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8080:80
|
||||
environment:
|
||||
- PMA_HOST=mariadb
|
||||
depends_on:
|
||||
- mariadb
|
||||
|
||||
mariadb:
|
||||
container_name: mariadb
|
||||
|
@ -24,5 +37,3 @@ services:
|
|||
- MYSQL_PASSWORD=password
|
||||
volumes:
|
||||
- ./db:/config
|
||||
ports:
|
||||
- 3306:3306
|
||||
|
|
Loading…
Add table
Reference in a new issue