Skip to content

Commit

Permalink
Final touches, ready to call this v0.1.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
BMO-tech committed Jan 4, 2018
1 parent e512b04 commit 5573d2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ Requires:

* Fork or Clone this repo
* Run `docker-compose up -d`
* Set alias for wp-cli commands `alias dwp='docker exec war-wordpress wp'`
* Upgrade WordPress `dwp core upgrade`
* Set directory and folder permissions `sudo find wordpress/. -type d -exec chmod 775 {} \;` and `sudo find wordpress/. -type f -exec chmod 664 {} \;`
* If on linux: Set directory and folder permissions `sudo find wordpress/. -type d -exec chmod 775 {} \;` and `sudo find wordpress/. -type f -exec chmod 664 {} \;`
* View README.md in `/wordpress/wp-content/plugins`
* View README.md in `/wordpress/wp-content/themes`
* View README.md in `/angular` directory
7 changes: 1 addition & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ version: '3'

services:
wordpress:
container_name: war-wordpress
depends_on:
- mysqldb
image: ohmydocker/docker-wordpress-wp-cli:latest
image: wordpress:latest
links:
- mysqldb:mysql
volumes:
Expand All @@ -17,7 +14,6 @@ services:
WORDPRESS_DB_PASSWORD: wordpress

mysqldb:
container_name: war-mysql
image: mysql:latest
volumes:
- db_data:/var/lib/mysql
Expand All @@ -28,7 +24,6 @@ services:
MYSQL_PASSWORD: wordpress

phpmyadmin:
container_name: war-pma
image: phpmyadmin/phpmyadmin:latest
links:
- mysqldb:mysql
Expand Down

0 comments on commit 5573d2c

Please sign in to comment.