From 0f30620387dd7d8085d6cd9c09157b8f88de6cbb Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sun, 13 Jan 2019 19:56:35 +0530 Subject: [PATCH] release 1.2.16 --- Changelog.md | 2 +- README.md | 18 +++++++++--------- VERSION | 2 +- docker-compose.yml | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Changelog.md b/Changelog.md index b6b855c2..bede76cc 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,6 @@ # ChangeLog -**latest** +**1.2.16** akaunting: upgrade to 1.2.16 **1.2.10** diff --git a/README.md b/README.md index ed47bcba..356ef915 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/akaunting/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/akaunting) -# sameersbn/akaunting:1.2.10 +# sameersbn/akaunting:1.2.16 - [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/akaunting) ```bash -docker pull sameersbn/akaunting:1.2.10 +docker pull sameersbn/akaunting:1.2.16 ``` Alternatively you can build the image yourself. @@ -92,7 +92,7 @@ docker run --name akaunting -itd --restart=always \ --env AKAUNTING_URL=http://akaunting.example.com:10080 \ --link akaunting-mysql:mysql \ --volume /srv/docker/akaunting/akaunting:/var/lib/akaunting \ - sameersbn/akaunting:1.2.10 app:akaunting + sameersbn/akaunting:1.2.16 app:akaunting ``` Step 3. Launch a NGINX frontend container @@ -101,7 +101,7 @@ Step 3. Launch a NGINX frontend container docker run --name akaunting-nginx -itd --restart=always \ --link akaunting:php-fpm \ --publish 10080:80 \ - sameersbn/akaunting:1.2.10 app:nginx + sameersbn/akaunting:1.2.16 app:nginx ``` Point your browser to `http://akaunting.example.com:10080` and login using the default username and password: @@ -142,7 +142,7 @@ Relaunch the container with the `app:backup:create` argument. ```bash docker run --name akaunting -it --rm [OPTIONS] \ - sameersbn/akaunting:1.2.10 app:backup:create + sameersbn/akaunting:1.2.16 app:backup:create ``` The backup will be created in the `backups/` folder of the [Persistent](#persistence) volume. You can change the location using the `AKAUNTING_BACKUPS_DIR` configuration parameter. @@ -171,7 +171,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch ```bash docker run --name akaunting -it --rm [OPTIONS] \ - sameersbn/akaunting:1.2.10 app:backup:restore + sameersbn/akaunting:1.2.16 app:backup:restore ``` A list of existing backups will be displayed. Select a backup you wish to restore. @@ -180,7 +180,7 @@ To avoid this interaction you can specify the backup filename using the `BACKUP` ```bash docker run --name akaunting -it --rm [OPTIONS] \ - sameersbn/akaunting:1.2.10 app:backup:restore BACKUP=1417624827_akaunting_backup.tar + sameersbn/akaunting:1.2.16 app:backup:restore BACKUP=1417624827_akaunting_backup.tar ``` ## Upgrading @@ -190,7 +190,7 @@ To upgrade to newer releases: 1. Download the updated Docker image: ```bash - docker pull sameersbn/akaunting:1.2.10 + docker pull sameersbn/akaunting:1.2.16 ``` 2. Stop the currently running image: @@ -210,7 +210,7 @@ To upgrade to newer releases: ```bash docker run -name akaunting -itd \ [OPTIONS] \ - sameersbn/akaunting:1.2.10 + sameersbn/akaunting:1.2.16 ``` ## Shell Access diff --git a/VERSION b/VERSION index 963ed7cf..f69752ab 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.10 +1.2.16 diff --git a/docker-compose.yml b/docker-compose.yml index de80e521..be53e60f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,7 @@ services: akaunting: restart: always - image: sameersbn/akaunting:1.2.10 + image: sameersbn/akaunting:1.2.16 command: app:akaunting environment: - DEBUG=false @@ -40,7 +40,7 @@ services: nginx: restart: always - image: sameersbn/akaunting:1.2.10 + image: sameersbn/akaunting:1.2.16 command: app:nginx environment: - AKAUNTING_PHP_FPM_HOST=akaunting