From f356ddfeb719b0723e179836562035de9bf89e06 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sun, 21 Feb 2016 07:38:00 -0800 Subject: release 8.2.2-3 --- README.md | 18 +++++++++--------- VERSION | 2 +- docker-compose.yml | 4 ++-- kubernetes/nginx.yaml | 2 +- kubernetes/owncloud.yaml | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index c1cbb88..cb91623 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/owncloud/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/owncloud) -# sameersbn/owncloud:8.2.2-2 +# sameersbn/owncloud:8.2.2-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/owncloud) ```bash -docker pull sameersbn/owncloud:8.2.2-2 +docker pull sameersbn/owncloud:8.2.2-3 ``` Alternatively you can build the image yourself. @@ -92,7 +92,7 @@ docker run --name owncloud -itd --restart=always \ --env OWNCLOUD_URL=http://cloud.example.com:10080 \ --link owncloud-postgresql:postgresql \ --volume /srv/docker/owncloud/owncloud:/var/lib/owncloud \ - sameersbn/owncloud:8.2.2-2 app:owncloud + sameersbn/owncloud:8.2.2-3 app:owncloud ``` Step 3. Launch a NGINX frontend container @@ -101,7 +101,7 @@ Step 3. Launch a NGINX frontend container docker run --name owncloud-nginx -itd --restart=always \ --link owncloud:php-fpm \ --publish 10080:80 \ - sameersbn/owncloud:8.2.2-2 app:nginx + sameersbn/owncloud:8.2.2-3 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 owncloud -it --rm [OPTIONS] \ - sameersbn/owncloud:8.2.2-2 app:backup:create + sameersbn/owncloud:8.2.2-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 `OWNCLOUD_BACKUPS_DIR` configuration parameter. @@ -171,7 +171,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch ```bash docker run --name owncloud -it --rm [OPTIONS] \ - sameersbn/owncloud:8.2.2-2 app:backup:restore + sameersbn/owncloud:8.2.2-3 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 owncloud -it --rm [OPTIONS] \ - sameersbn/owncloud:8.2.2-2 app:backup:restore BACKUP=1417624827_owncloud_backup.tar + sameersbn/owncloud:8.2.2-3 app:backup:restore BACKUP=1417624827_owncloud_backup.tar ``` ## Upgrading @@ -190,7 +190,7 @@ To upgrade to newer releases: 1. Download the updated Docker image: ```bash - docker pull sameersbn/owncloud:8.2.2-2 + docker pull sameersbn/owncloud:8.2.2-3 ``` 2. Stop the currently running image: @@ -210,7 +210,7 @@ To upgrade to newer releases: ```bash docker run -name owncloud -itd \ [OPTIONS] \ - sameersbn/owncloud:8.2.2-2 + sameersbn/owncloud:8.2.2-3 ``` ## Shell Access diff --git a/VERSION b/VERSION index ceb99b0..89926cf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.2.2-2 +8.2.2-3 diff --git a/docker-compose.yml b/docker-compose.yml index 65693b9..1007588 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ postgresql: owncloud: restart: always - image: sameersbn/owncloud:8.2.2-2 + image: sameersbn/owncloud:8.2.2-3 command: app:owncloud environment: - DEBUG=false @@ -31,7 +31,7 @@ owncloud: - /srv/docker/owncloud/owncloud:/var/lib/owncloud nginx: - image: sameersbn/owncloud:8.2.2-2 + image: sameersbn/owncloud:8.2.2-3 command: app:nginx environment: - OWNCLOUD_PHP_FPM_HOST= diff --git a/kubernetes/nginx.yaml b/kubernetes/nginx.yaml index 6677344..1f9af79 100644 --- a/kubernetes/nginx.yaml +++ b/kubernetes/nginx.yaml @@ -7,7 +7,7 @@ metadata: spec: containers: - name: nginx - image: sameersbn/owncloud:8.2.2-2 + image: sameersbn/owncloud:8.2.2-3 args: ["app:nginx"] env: - name: OWNCLOUD_URL diff --git a/kubernetes/owncloud.yaml b/kubernetes/owncloud.yaml index 72997e7..d791613 100644 --- a/kubernetes/owncloud.yaml +++ b/kubernetes/owncloud.yaml @@ -7,7 +7,7 @@ metadata: spec: containers: - name: owncloud - image: sameersbn/owncloud:8.2.2-2 + image: sameersbn/owncloud:8.2.2-3 args: ["app:owncloud"] env: - name: TZ -- cgit v1.2.3