Skip to content

Instantly share code, notes, and snippets.

@alectoist
Created March 13, 2016 10:08
Show Gist options
  • Save alectoist/329ca77c978b6b4015ae to your computer and use it in GitHub Desktop.
Save alectoist/329ca77c978b6b4015ae to your computer and use it in GitHub Desktop.
docker things
db:
image: mysql:latest
container_name: bible_mysql
environment:
MYSQL_ROOT_PASSWORD: "admin"
ports:
- 3306
phpmyadmin:
image: corbinu/docker-phpmyadmin
links:
- db:mysql
ports:
- 8181:80
environment:
MYSQL_USERNAME: root
MYSQL_ROOT_PASSWORD: admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment