Skip to content

Instantly share code, notes, and snippets.

@silkyland
Last active March 3, 2021 04:04
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 silkyland/1fe77acc596c99c8ab3edb01fed6ce45 to your computer and use it in GitHub Desktop.
Save silkyland/1fe77acc596c99c8ab3edb01fed6ce45 to your computer and use it in GitHub Desktop.
Mariadb + PhpMyAdmin docker-compose.yml
version: '3.1'
services:
db:
image: mariadb
restart: always
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: 1234
admin:
image: phpmyadmin
restart: always
ports:
- 8080:80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment