You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
369 B
YAML
20 lines
369 B
YAML
1 month ago
|
services:
|
||
|
mariadb:
|
||
|
container_name: tyna-db
|
||
|
image: mariadb:11.4 # LTS at 25. 12. 2025
|
||
|
restart: on-failure:2
|
||
|
environment:
|
||
|
MARIADB_ROOT_PASSWORD: root
|
||
|
ports:
|
||
|
- 3306:3306
|
||
|
|
||
|
phpmyadmin:
|
||
|
container_name: tyna-phpmyadmin
|
||
|
image: phpmyadmin
|
||
|
restart: on-failure:2
|
||
|
ports:
|
||
|
- 8080:80
|
||
|
environment:
|
||
|
- PMA_ARBITRARY=1
|
||
|
|