Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/container.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSameer Naik <sameer@damagehead.com>2016-12-29 19:27:18 +0300
committerSameer Naik <sameer@damagehead.com>2016-12-29 19:27:18 +0300
commit33073e1133a49619ffefd44bb95eca9d4c63d9bc (patch)
tree7cd5ff40cbff971b80eec39c731410b3478d7848
parentaaf6952c43c636929db9c65cbbd126120c11b379 (diff)
release 9.0.559.0.55
-rw-r--r--README.md18
-rw-r--r--VERSION2
-rw-r--r--docker-compose.yml4
-rw-r--r--kubernetes/nextcloud.yaml2
-rw-r--r--kubernetes/nginx.yaml2
5 files changed, 14 insertions, 14 deletions
diff --git a/README.md b/README.md
index d35c1a1..ec67346 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.54
+# sameersbn/nextcloud:9.0.55
- [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.54
+docker pull sameersbn/nextcloud:9.0.55
```
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.54 app:nextcloud
+ sameersbn/nextcloud:9.0.55 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.54 app:nginx
+ sameersbn/nextcloud:9.0.55 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.54 app:backup:create
+ sameersbn/nextcloud:9.0.55 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.54 app:backup:restore
+ sameersbn/nextcloud:9.0.55 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.54 app:backup:restore BACKUP=1417624827_nextcloud_backup.tar
+ sameersbn/nextcloud:9.0.55 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.54
+ docker pull sameersbn/nextcloud:9.0.55
```
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.54
+ sameersbn/nextcloud:9.0.55
```
## Shell Access
diff --git a/VERSION b/VERSION
index ac0eee1..7236582 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-9.0.54
+9.0.55
diff --git a/docker-compose.yml b/docker-compose.yml
index e544a2b..e90a835 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -10,7 +10,7 @@ postgresql:
nextcloud:
restart: always
- image: sameersbn/nextcloud:9.0.54
+ image: sameersbn/nextcloud:9.0.55
command: app:nextcloud
environment:
- DEBUG=false
@@ -31,7 +31,7 @@ nextcloud:
- /srv/docker/nextcloud/nextcloud:/var/lib/nextcloud
nginx:
- image: sameersbn/nextcloud:9.0.54
+ image: sameersbn/nextcloud:9.0.55
command: app:nginx
environment:
- NEXTCLOUD_PHP_FPM_HOST=
diff --git a/kubernetes/nextcloud.yaml b/kubernetes/nextcloud.yaml
index d25112c..eab2170 100644
--- a/kubernetes/nextcloud.yaml
+++ b/kubernetes/nextcloud.yaml
@@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: nextcloud
- image: sameersbn/nextcloud:9.0.54
+ image: sameersbn/nextcloud:9.0.55
args: ["app:nextcloud"]
env:
- name: TZ
diff --git a/kubernetes/nginx.yaml b/kubernetes/nginx.yaml
index b043855..c1a0970 100644
--- a/kubernetes/nginx.yaml
+++ b/kubernetes/nginx.yaml
@@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: nginx
- image: sameersbn/nextcloud:9.0.54
+ image: sameersbn/nextcloud:9.0.55
args: ["app:nginx"]
env:
- name: NEXTCLOUD_URL