Skip to content

Instantly share code, notes, and snippets.

@emgk
Created May 8, 2017 09:56
Show Gist options
  • Save emgk/27e02ba61520c10232f0a6b76c01d15e to your computer and use it in GitHub Desktop.
Save emgk/27e02ba61520c10232f0a6b76c01d15e to your computer and use it in GitHub Desktop.
install the wordpress using docker
wordpress:
image: wordpress
links:
- mariadb:mysql
environment:
- WORDPRESS_DB_PASSWORD=<your password>
ports:
- "<Public IP>:80:80"
volumes:
- ./code:/code
- ./html:/var/www/html
mariadb:
image: mariadb
environment:
- MYSQL_ROOT_PASSWORD=<your password>
- MYSQL_DATABASE=wordpress
volumes:
- ./database:/var/lib/mysql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment