Skip to content

Instantly share code, notes, and snippets.

@oxlb
Created July 3, 2020 06:54
Show Gist options
  • Save oxlb/e226810994e87895b0ef3cdfc38fc57d to your computer and use it in GitHub Desktop.
Save oxlb/e226810994e87895b0ef3cdfc38fc57d to your computer and use it in GitHub Desktop.
version: '3.6'
services:
# MySQL
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: mydb
MYSQL_USER: user
MYSQL_PASSWORD: user
volumes:
- ./init:/docker-entrypoint-initdb.d
adminer:
image: adminer
restart: always
ports:
- 8080:8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment