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-06-11 17:36:06 +0300
committerSameer Naik <sameer@damagehead.com>2016-06-11 17:36:06 +0300
commit8565ae915ad2dd4f174ad497153512d9107e2599 (patch)
tree07646721a3f89c2dd2538ce9b1d3a74be13bc35e
parent6e21fa7795fde392f9ad39fc251817714997e892 (diff)
release 9.0.2-1
-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
5 files changed, 14 insertions, 14 deletions
diff --git a/README.md b/README.md
index 065f8d1..5645a70 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:9.0.2
+# sameersbn/owncloud:9.0.2-1
- [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:9.0.2
+docker pull sameersbn/owncloud:9.0.2-1
```
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:9.0.2 app:owncloud
+ sameersbn/owncloud:9.0.2-1 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:9.0.2 app:nginx
+ sameersbn/owncloud:9.0.2-1 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:9.0.2 app:backup:create
+ sameersbn/owncloud:9.0.2-1 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:9.0.2 app:backup:restore
+ sameersbn/owncloud:9.0.2-1 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:9.0.2 app:backup:restore BACKUP=1417624827_owncloud_backup.tar
+ sameersbn/owncloud:9.0.2-1 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:9.0.2
+ docker pull sameersbn/owncloud:9.0.2-1
```
2. Stop the currently running image:
@@ -210,7 +210,7 @@ To upgrade to newer releases:
```bash
docker run -name owncloud -itd \
[OPTIONS] \
- sameersbn/owncloud:9.0.2
+ sameersbn/owncloud:9.0.2-1
```
## Shell Access
diff --git a/VERSION b/VERSION
index 3beeadd..c9a07b9 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-9.0.2
+9.0.2-1
diff --git a/docker-compose.yml b/docker-compose.yml
index e56aa31..403f05c 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -10,7 +10,7 @@ postgresql:
owncloud:
restart: always
- image: sameersbn/owncloud:9.0.2
+ image: sameersbn/owncloud:9.0.2-1
command: app:owncloud
environment:
- DEBUG=false
@@ -31,7 +31,7 @@ owncloud:
- /srv/docker/owncloud/owncloud:/var/lib/owncloud
nginx:
- image: sameersbn/owncloud:9.0.2
+ image: sameersbn/owncloud:9.0.2-1
command: app:nginx
environment:
- OWNCLOUD_PHP_FPM_HOST=
diff --git a/kubernetes/nginx.yaml b/kubernetes/nginx.yaml
index e4affca..feb5323 100644
--- a/kubernetes/nginx.yaml
+++ b/kubernetes/nginx.yaml
@@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: nginx
- image: sameersbn/owncloud:9.0.2
+ image: sameersbn/owncloud:9.0.2-1
args: ["app:nginx"]
env:
- name: OWNCLOUD_URL
diff --git a/kubernetes/owncloud.yaml b/kubernetes/owncloud.yaml
index 547ef29..1562249 100644
--- a/kubernetes/owncloud.yaml
+++ b/kubernetes/owncloud.yaml
@@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: owncloud
- image: sameersbn/owncloud:9.0.2
+ image: sameersbn/owncloud:9.0.2-1
args: ["app:owncloud"]
env:
- name: TZ