quicker/docker-compose.yaml

22 lines
382 B
YAML
Raw Normal View History

2023-07-09 03:47:50 +03:00
version: '3.1'
services:
db:
image: mysql:8
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_USER: myuser
MYSQL_PASSWORD: example
MYSQL_DATABASE: mydb
MYSQL_ROOT_PASSWORD: example
ports:
- 3306:3306
adminer:
image: adminer
restart: always
ports:
- 8080:8080