Skip to content

Instantly share code, notes, and snippets.

@destinmoulton
Last active February 11, 2020 22:54
Show Gist options
  • Select an option

  • Save destinmoulton/5c75aebd2a429808a70ca137e4004d09 to your computer and use it in GitHub Desktop.

Select an option

Save destinmoulton/5c75aebd2a429808a70ca137e4004d09 to your computer and use it in GitHub Desktop.
Docker
# docker-compose.yml
# MySQL and PHPMyAdmin
version: "3.2"
services:
db:
image: mysql:5.7
command: "--innodb_use_native_aio=0"
restart: always
environment:
MYSQL_ROOT_PASSWORD: toor
phpmyadmin:
links:
- db
depends_on:
- db
image: phpmyadmin/phpmyadmin
restart: always
ports:
- 8181:80
environment:
PMA_ARBITRARY: 1
MYSQL_ROOT_PASSWORD: toor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment