-
Clone feedcomet-wordpress-plugin to the same folder as docker-compose
-
Issue following commands
sudo setfacl -R -m u:www-data:rwX -m u:`whoami`:rwX feedcomet-wordpress-plugin sudo setfacl -dR -m u:www-data:rwX -m u:`whoami`:rwX feedcomet-wordpress-plugin
-
docker-compose up -d
-
Go to
http://localhost:9000/
and setup WordPress
Last active
January 31, 2017 08:42
-
-
Save lwojciechowski/0da5e174691f38b904fba67d4fca9f09 to your computer and use it in GitHub Desktop.
Feedcomet Wordpress dev setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: wordpress | |
MYSQL_DATABASE: wordpress | |
MYSQL_USER: wordpress | |
MYSQL_PASSWORD: wordpress | |
wordpress: | |
depends_on: | |
- db | |
image: wordpress:latest | |
ports: | |
- "9000:80" | |
restart: always | |
environment: | |
WORDPRESS_DB_HOST: db:3306 | |
WORDPRESS_DB_PASSWORD: wordpress | |
volumes: | |
- ./feedcomet-wordpress-plugin:/var/www/html/wp-content/plugins/feedcomet-wordpress-plugin | |
volumes: | |
db_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment