Skip to content

Instantly share code, notes, and snippets.

@mianala
Last active May 27, 2022 08:38
Show Gist options
  • Save mianala/1a1f771c502a5f75c4272e5cbe59028d to your computer and use it in GitHub Desktop.
Save mianala/1a1f771c502a5f75c4272e5cbe59028d to your computer and use it in GitHub Desktop.
version: '3'
services:
db:
image: mysql:5.7
container_name: db
environment:
MYSQL_ROOT_PASSWORD: rootpassword
MYSQL_DATABASE: database
MYSQL_USER: db_user
MYSQL_PASSWORD: db_user_pass
ports:
- '3306:3306'
volumes:
- dbdata:/var/lib/mysql
phpmyadmin:
image: phpmyadmin/phpmyadmin
container_name: pma
links:
- db
environment:
PMA_HOST: db
PMA_PORT: 3306
PMA_ARBITRARY: 1
restart: always
ports:
- 8081:80
volumes:
dbdata:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment