Skip to content

Instantly share code, notes, and snippets.

@phuctu1901
Created August 1, 2021 03:50
Show Gist options
  • Save phuctu1901/a04c91f82aa5b2799280cc1a803af7c0 to your computer and use it in GitHub Desktop.
Save phuctu1901/a04c91f82aa5b2799280cc1a803af7c0 to your computer and use it in GitHub Desktop.
version: '3.1'
services:
db:
image: mariadb:10.3
restart: always
ports:
- 3306:3306
environment:
MYSQL_USER: admin
MYSQL_ROOT_PASSWORD: password
phpmyadmin:
depends_on:
- db
image: phpmyadmin
restart: always
ports:
- 8082:80
environment:
- PMA_ARBITRARY=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment