mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
28 lines
479 B
YAML
28 lines
479 B
YAML
# https://www.adminer.org/
|
|
|
|
# Use root/example as user/password credentials
|
|
|
|
version: '3.1'
|
|
|
|
services:
|
|
|
|
db:
|
|
image: mariadb
|
|
container_name: db
|
|
restart: always
|
|
ports:
|
|
- 3306:3306
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: example
|
|
MARIADB_USER: example-user
|
|
MARIADB_PASSWORD: my_cool_secret
|
|
volumes:
|
|
- ./mysql:/var/lib/mysql
|
|
|
|
adminer:
|
|
image: adminer
|
|
container_name: adminer
|
|
restart: always
|
|
ports:
|
|
- 8081:8080
|