From 09ec652f63f2644e3aa93cab5a563eaa08b14488 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sat, 6 Jul 2019 13:35:25 +0530 Subject: [PATCH] release 1.5.9-3 --- README.md | 18 +++++++++--------- VERSION | 2 +- docker-compose.yml | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 01b7de9..1f745cc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/invoiceplane/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/invoiceplane) -# sameersbn/invoiceplane:1.5.9-2 +# sameersbn/invoiceplane:1.5.9-3 - [Introduction](#introduction) - [Contributing](#contributing) @@ -50,7 +50,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co > **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/invoiceplane) ```bash -docker pull sameersbn/invoiceplane:1.5.9-2 +docker pull sameersbn/invoiceplane:1.5.9-3 ``` Alternatively you can build the image yourself. @@ -93,7 +93,7 @@ docker run --name invoiceplane -itd --restart=always \ --env 'INVOICEPLANE_FQDN=invoice.example.com' \ --env 'INVOICEPLANE_TIMEZONE=Asia/Kolkata' \ --volume /srv/docker/invoiceplane/invoiceplane:/var/lib/invoiceplane \ - sameersbn/invoiceplane:1.5.9-2 app:invoiceplane + sameersbn/invoiceplane:1.5.9-3 app:invoiceplane ``` Step 3. Launch a NGINX frontend container @@ -103,7 +103,7 @@ docker run --name invoiceplane-nginx -itd --restart=always \ --link invoiceplane:php-fpm \ --volumes-from invoiceplane \ --publish 10080:80 \ - sameersbn/invoiceplane:1.5.9-2 app:nginx + sameersbn/invoiceplane:1.5.9-3 app:nginx ``` Point your browser to [http://invoice.example.com:10080/setup](http://invoice.example.com:10080/setup) to complete the setup. @@ -137,7 +137,7 @@ Relaunch the container with the `app:backup:create` argument. ```bash docker run --name invoiceplane -it --rm [OPTIONS] \ - sameersbn/invoiceplane:1.5.9-2 app:backup:create + sameersbn/invoiceplane:1.5.9-3 app:backup:create ``` The backup will be created in the `backups/` folder of the [Persistent](#persistence) volume. You can change the location using the `INVOICEPLANE_BACKUPS_DIR` configuration parameter. @@ -166,7 +166,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch ```bash docker run --name invoiceplane -it --rm [OPTIONS] \ - sameersbn/invoiceplane:1.5.9-2 app:backup:restore + sameersbn/invoiceplane:1.5.9-3 app:backup:restore ``` A list of existing backups will be displayed. Select a backup you wish to restore. @@ -175,7 +175,7 @@ To avoid this interaction you can specify the backup filename using the `BACKUP` ```bash docker run --name invoiceplane -it --rm [OPTIONS] \ - sameersbn/invoiceplane:1.5.9-2 app:backup:restore BACKUP=1417624827_invoiceplane_backup.tar + sameersbn/invoiceplane:1.5.9-3 app:backup:restore BACKUP=1417624827_invoiceplane_backup.tar ``` ## Upgrading @@ -185,7 +185,7 @@ To upgrade to newer releases: 1. Download the updated Docker image: ```bash - docker pull sameersbn/invoiceplane:1.5.9-2 + docker pull sameersbn/invoiceplane:1.5.9-3 ``` 2. Stop the currently running image: @@ -205,7 +205,7 @@ To upgrade to newer releases: ```bash docker run -name invoiceplane -itd \ [OPTIONS] \ - sameersbn/invoiceplane:1.5.9-2 + sameersbn/invoiceplane:1.5.9-3 ``` Point your browser to [http://invoice.example.com:10080/setup](http://invoice.example.com:10080/setup) to complete the upgrade. diff --git a/VERSION b/VERSION index 5fcf348..c9dcdcb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.9-2 +1.5.9-3 diff --git a/docker-compose.yml b/docker-compose.yml index fe1e412..92c1b24 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,7 @@ services: invoiceplane: restart: always - image: sameersbn/invoiceplane:1.5.9-2 + image: sameersbn/invoiceplane:1.5.9-3 command: app:invoiceplane environment: - DEBUG=false @@ -35,7 +35,7 @@ services: nginx: restart: always - image: sameersbn/invoiceplane:1.5.9-2 + image: sameersbn/invoiceplane:1.5.9-3 command: app:nginx environment: - INVOICEPLANE_PHP_FPM_HOST=invoiceplane