Skip to content

Instantly share code, notes, and snippets.

@empeje
Created August 17, 2019 01:49
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 empeje/c22f904b552462bb7404a583ff041731 to your computer and use it in GitHub Desktop.
Save empeje/c22f904b552462bb7404a583ff041731 to your computer and use it in GitHub Desktop.
Wordpress + Metabase = Awesome!
version: '3.1'
services:
db:
image: mysql:5.7
restart: always
environment:
MYSQL_DATABASE: exampledb
MYSQL_USER: exampleuser
MYSQL_PASSWORD: examplepass
MYSQL_RANDOM_ROOT_PASSWORD: '1'
ports:
- 3306:3306
# docker run -d -p 3000:3000 --name metabase metabase/metabase
metabase:
image: metabase/metabase
ports:
- 3000:3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment