Skip to content

Commit

Permalink
Add changelog and change volume strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
michaloo committed Oct 1, 2020
1 parent 8ed85b8 commit 9075b69
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# CHANGELOG

## v2.0.2

Smaller improvements

- don't mount volume to local directory - which can be changed breaking some commands
- add this changelog file

## v2.0.1

Hotfix for broken comment.


## v2.0.0

This release simplifies dockerpresso:

- no other dependencies than bash
- dockerpresso is supposed to be installed in /usr/local/bin or similar place instead of in each project
- no separate templates files, everything is in one bash script
- no custom docker images or installers, I know I already wrote that, but this is just a single bash script now
- commands simplified and reworked for easier usage
- documentation slightly updated


## v0.0.1

Initial version
5 changes: 3 additions & 2 deletions bin/dockerpresso
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env sh
set -e

VERSION="2.0.1"
VERSION="2.0.2"

SCRIPT_PATH=$(dirname "$0")

Expand Down Expand Up @@ -148,7 +148,7 @@ services:
image: wordpress
env_file: .env
volumes:
- ./wordpress_data:/var/www/html/
- wordpress_data:/var/www/html/
# uncomment line below to start theme development
# - ./example-theme-src:/var/www/html/wp-content/themes/example-theme
# uncomment line below to start plugin development
Expand All @@ -166,6 +166,7 @@ services:
- mysql_data:/var/lib/mysql
volumes:
mysql_data: {}
wordpress_data: {}
EOT

Expand Down

0 comments on commit 9075b69

Please sign in to comment.