Skip to content

Instantly share code, notes, and snippets.

@xackery
Created August 8, 2018 07:48
Show Gist options
  • Save xackery/d93e05825b2db74425086bde617ac635 to your computer and use it in GitHub Desktop.
Save xackery/d93e05825b2db74425086bde617ac635 to your computer and use it in GitHub Desktop.
docker-compose.yml
version: '3'
services:
mariadb:
image: "bitnami/mariadb:latest"
volumes:
- ./db:/bitnami/mariadb
environment:
MARIADB_DATABASE: eqemu
MARIADB_USER: eqemu
MARIADB_PASSWORD: eqemupass
ALLOW_EMPTY_PASSWORD: "yes"
ports:
- "3306:3306"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment