Skip to content

Instantly share code, notes, and snippets.

@antonlukin
Created April 14, 2020 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonlukin/94a1c1cd108ee55ef98cd188baf3d9b8 to your computer and use it in GitHub Desktop.
Save antonlukin/94a1c1cd108ee55ef98cd188baf3d9b8 to your computer and use it in GitHub Desktop.
Mysql only docker-compose
version: '3.7'
services:
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
ports:
- "3306:3306"
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