Skip to content

Instantly share code, notes, and snippets.

@adagio
Last active July 8, 2019 05:31
Show Gist options
  • Save adagio/d377a2ba77548ad1d5157f9bf4ea51da to your computer and use it in GitHub Desktop.
Save adagio/d377a2ba77548ad1d5157f9bf4ea51da to your computer and use it in GitHub Desktop.
MariaDB on docker-compose
# Use root/example as user/password credentials
version: '3.1'
services:
db:
image: mariadb
restart: always
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: example
adminer:
image: adminer
restart: always
ports:
- 8080:8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment