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>2015-12-30 19:38:20 +0300
committerSameer Naik <sameer@damagehead.com>2015-12-30 19:38:20 +0300
commitf0d5b1fba8da53867246aeb3d1e8a80c7798ea4a (patch)
tree3d076383c2a793dde6fe92f18220415407d83fb9
parent35f563a0405378ccfc99aec98cda3b4c6630ac43 (diff)
release 8.1.5
-rw-r--r--Changelog.md2
-rw-r--r--README.md18
-rw-r--r--VERSION2
-rw-r--r--docker-compose.yml4
-rw-r--r--kubernetes/nginx.yaml2
-rw-r--r--kubernetes/owncloud.yaml2
6 files changed, 15 insertions, 15 deletions
diff --git a/Changelog.md b/Changelog.md
index 05b5426..65515e6 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,4 +1,4 @@
-**latest**
+**8.1.5**
- owncloud: upgrade to 8.1.5
- use `maintenance:install` to perform full install at launch
diff --git a/README.md b/README.md
index 0c307b9..d47fe4f 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.0.10
+# sameersbn/owncloud:8.1.5
- [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.0.10
+docker pull sameersbn/owncloud:8.1.5
```
Alternatively you can build the image yourself.
@@ -93,7 +93,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.0.10 app:owncloud
+ sameersbn/owncloud:8.1.5 app:owncloud
```
Step 3. Launch a NGINX frontend container
@@ -102,7 +102,7 @@ Step 3. Launch a NGINX frontend container
docker run --name=owncloud-nginx -itd --restart=always \
--link owncloud:owncloud-php-fpm \
--publish 10080:80 \
- sameersbn/owncloud:8.0.10 app:nginx
+ sameersbn/owncloud:8.1.5 app:nginx
```
Point your browser to `http://cloud.example.com:10080` and login using the default username and password:
@@ -143,7 +143,7 @@ Relaunch the container with the `app:backup:create` argument.
```bash
docker run --name owncloud -it --rm [OPTIONS] \
- sameersbn/owncloud:8.0.10 app:backup:create
+ sameersbn/owncloud:8.1.5 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.
@@ -172,7 +172,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch
```bash
docker run --name owncloud -it --rm [OPTIONS] \
- sameersbn/owncloud:8.0.10 app:backup:restore
+ sameersbn/owncloud:8.1.5 app:backup:restore
```
A list of existing backups will be displayed. Select a backup you wish to restore.
@@ -181,7 +181,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.0.10 app:backup:restore BACKUP=1417624827_owncloud_backup.tar
+ sameersbn/owncloud:8.1.5 app:backup:restore BACKUP=1417624827_owncloud_backup.tar
```
## Upgrading
@@ -191,7 +191,7 @@ To upgrade to newer releases:
1. Download the updated Docker image:
```bash
- docker pull sameersbn/owncloud:8.0.10
+ docker pull sameersbn/owncloud:8.1.5
```
2. Stop the currently running image:
@@ -211,7 +211,7 @@ To upgrade to newer releases:
```bash
docker run -name owncloud -itd \
[OPTIONS] \
- sameersbn/owncloud:8.0.10
+ sameersbn/owncloud:8.1.5
```
## Shell Access
diff --git a/VERSION b/VERSION
index cfaf10a..ee0f689 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-8.0.10
+8.1.5
diff --git a/docker-compose.yml b/docker-compose.yml
index 600256f..3285509 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -8,7 +8,7 @@ postgresql:
- /srv/docker/owncloud/postgresql:/var/lib/postgresql
owncloud:
- image: sameersbn/owncloud:8.0.10
+ image: sameersbn/owncloud:8.1.5
command: app:owncloud
environment:
- DEBUG=false
@@ -29,7 +29,7 @@ owncloud:
- /srv/docker/owncloud/owncloud:/var/lib/owncloud
nginx:
- image: sameersbn/owncloud:8.0.10
+ image: sameersbn/owncloud:8.1.5
command: app:nginx
links:
- owncloud:php-fpm
diff --git a/kubernetes/nginx.yaml b/kubernetes/nginx.yaml
index f9b3111..3f0c02a 100644
--- a/kubernetes/nginx.yaml
+++ b/kubernetes/nginx.yaml
@@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: nginx
- image: sameersbn/owncloud:8.0.10
+ image: sameersbn/owncloud:8.1.5
args: ["app:nginx"]
env:
- name: OWNCLOUD_URL
diff --git a/kubernetes/owncloud.yaml b/kubernetes/owncloud.yaml
index b863240..3b7fdf0 100644
--- a/kubernetes/owncloud.yaml
+++ b/kubernetes/owncloud.yaml
@@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: owncloud
- image: sameersbn/owncloud:8.0.10
+ image: sameersbn/owncloud:8.1.5
args: ["app:owncloud"]
env:
- name: TZ