From e4bfa465944855dae37f32f0da28c881a4f6fa59 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sun, 16 Oct 2016 19:19:30 +0530 Subject: release 9.0.54 --- README.md | 18 +++++++++--------- VERSION | 2 +- docker-compose.yml | 4 ++-- kubernetes/nextcloud.yaml | 2 +- kubernetes/nginx.yaml | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 7b5b8aa..73d295e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/nextcloud/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/nextcloud) -# sameersbn/nextcloud:9.0.53-2 +# sameersbn/nextcloud:9.0.54 - [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/nextcloud) ```bash -docker pull sameersbn/nextcloud:9.0.53-2 +docker pull sameersbn/nextcloud:9.0.54 ``` Alternatively you can build the image yourself. @@ -92,7 +92,7 @@ docker run --name nextcloud -itd --restart=always \ --env NEXTCLOUD_URL=http://cloud.example.com:10080 \ --link nextcloud-postgresql:postgresql \ --volume /srv/docker/nextcloud/nextcloud:/var/lib/nextcloud \ - sameersbn/nextcloud:9.0.53-2 app:nextcloud + sameersbn/nextcloud:9.0.54 app:nextcloud ``` Step 3. Launch a NGINX frontend container @@ -101,7 +101,7 @@ Step 3. Launch a NGINX frontend container docker run --name nextcloud-nginx -itd --restart=always \ --link nextcloud:php-fpm \ --publish 10080:80 \ - sameersbn/nextcloud:9.0.53-2 app:nginx + sameersbn/nextcloud:9.0.54 app:nginx ``` Point your browser to `http://cloud.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 nextcloud -it --rm [OPTIONS] \ - sameersbn/nextcloud:9.0.53-2 app:backup:create + sameersbn/nextcloud:9.0.54 app:backup:create ``` The backup will be created in the `backups/` folder of the [Persistent](#persistence) volume. You can change the location using the `NEXTCLOUD_BACKUPS_DIR` configuration parameter. @@ -171,7 +171,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch ```bash docker run --name nextcloud -it --rm [OPTIONS] \ - sameersbn/nextcloud:9.0.53-2 app:backup:restore + sameersbn/nextcloud:9.0.54 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 nextcloud -it --rm [OPTIONS] \ - sameersbn/nextcloud:9.0.53-2 app:backup:restore BACKUP=1417624827_nextcloud_backup.tar + sameersbn/nextcloud:9.0.54 app:backup:restore BACKUP=1417624827_nextcloud_backup.tar ``` ## Upgrading @@ -190,7 +190,7 @@ To upgrade to newer releases: 1. Download the updated Docker image: ```bash - docker pull sameersbn/nextcloud:9.0.53-2 + docker pull sameersbn/nextcloud:9.0.54 ``` 2. Stop the currently running image: @@ -210,7 +210,7 @@ To upgrade to newer releases: ```bash docker run -name nextcloud -itd \ [OPTIONS] \ - sameersbn/nextcloud:9.0.53-2 + sameersbn/nextcloud:9.0.54 ``` ## Shell Access diff --git a/VERSION b/VERSION index 8689c03..ac0eee1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -9.0.53-2 +9.0.54 diff --git a/docker-compose.yml b/docker-compose.yml index 2a8174e..0d44674 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ postgresql: nextcloud: restart: always - image: sameersbn/nextcloud:9.0.53-2 + image: sameersbn/nextcloud:9.0.54 command: app:nextcloud environment: - DEBUG=false @@ -31,7 +31,7 @@ nextcloud: - /srv/docker/nextcloud/nextcloud:/var/lib/nextcloud nginx: - image: sameersbn/nextcloud:9.0.53-2 + image: sameersbn/nextcloud:9.0.54 command: app:nginx environment: - NEXTCLOUD_PHP_FPM_HOST= diff --git a/kubernetes/nextcloud.yaml b/kubernetes/nextcloud.yaml index fdbe09d..d25112c 100644 --- a/kubernetes/nextcloud.yaml +++ b/kubernetes/nextcloud.yaml @@ -7,7 +7,7 @@ metadata: spec: containers: - name: nextcloud - image: sameersbn/nextcloud:9.0.53-2 + image: sameersbn/nextcloud:9.0.54 args: ["app:nextcloud"] env: - name: TZ diff --git a/kubernetes/nginx.yaml b/kubernetes/nginx.yaml index 49a944a..b043855 100644 --- a/kubernetes/nginx.yaml +++ b/kubernetes/nginx.yaml @@ -7,7 +7,7 @@ metadata: spec: containers: - name: nginx - image: sameersbn/nextcloud:9.0.53-2 + image: sameersbn/nextcloud:9.0.54 args: ["app:nginx"] env: - name: NEXTCLOUD_URL -- cgit v1.2.3