Skip to content

Commit

Permalink
release 1.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameer Naik committed Jan 13, 2019
1 parent 100d16e commit 0f30620
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ChangeLog

**latest**
**1.2.16**
akaunting: upgrade to 1.2.16

**1.2.10**
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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:
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.10
1.2.16
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0f30620

Please sign in to comment.