Skip to content

Commit 6fb07ef

Browse files
author
Sameer Naik
committed
Merge branch 'release-10.0.10-0'
2 parents f97dfae + 12e24a8 commit 6fb07ef

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
**latest**
1+
**10.0.10-0**
22
- owncloud: upgrade to 10.0.10
33

44
**10.0.9**

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/owncloud/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/owncloud)
22

3-
# sameersbn/owncloud:10.0.9
3+
# sameersbn/owncloud:10.0.10-0
44

55
- [Introduction](#introduction)
66
- [Contributing](#contributing)
@@ -50,7 +50,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co
5050
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/owncloud)
5151
5252
```bash
53-
docker pull sameersbn/owncloud:10.0.9
53+
docker pull sameersbn/owncloud:10.0.10-0
5454
```
5555

5656
Alternatively you can build the image yourself.
@@ -92,7 +92,7 @@ docker run --name owncloud -itd --restart=always \
9292
--env OWNCLOUD_URL=http://cloud.example.com:10080 \
9393
--link owncloud-postgresql:postgresql \
9494
--volume /srv/docker/owncloud/owncloud:/var/lib/owncloud \
95-
sameersbn/owncloud:10.0.9 app:owncloud
95+
sameersbn/owncloud:10.0.10-0 app:owncloud
9696
```
9797

9898
Step 3. Launch a NGINX frontend container
@@ -101,7 +101,7 @@ Step 3. Launch a NGINX frontend container
101101
docker run --name owncloud-nginx -itd --restart=always \
102102
--link owncloud:php-fpm \
103103
--publish 10080:80 \
104-
sameersbn/owncloud:10.0.9 app:nginx
104+
sameersbn/owncloud:10.0.10-0 app:nginx
105105
```
106106

107107
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.
142142

143143
```bash
144144
docker run --name owncloud -it --rm [OPTIONS] \
145-
sameersbn/owncloud:10.0.9 app:backup:create
145+
sameersbn/owncloud:10.0.10-0 app:backup:create
146146
```
147147

148148
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
171171
172172
```bash
173173
docker run --name owncloud -it --rm [OPTIONS] \
174-
sameersbn/owncloud:10.0.9 app:backup:restore
174+
sameersbn/owncloud:10.0.10-0 app:backup:restore
175175
```
176176
177177
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`
180180
181181
```bash
182182
docker run --name owncloud -it --rm [OPTIONS] \
183-
sameersbn/owncloud:10.0.9 app:backup:restore BACKUP=1417624827_owncloud_backup.tar
183+
sameersbn/owncloud:10.0.10-0 app:backup:restore BACKUP=1417624827_owncloud_backup.tar
184184
```
185185
186186
## Upgrading
@@ -190,7 +190,7 @@ To upgrade to newer releases:
190190
1. Download the updated Docker image:
191191
192192
```bash
193-
docker pull sameersbn/owncloud:10.0.9
193+
docker pull sameersbn/owncloud:10.0.10-0
194194
```
195195
196196
2. Stop the currently running image:
@@ -210,7 +210,7 @@ To upgrade to newer releases:
210210
```bash
211211
docker run -name owncloud -itd \
212212
[OPTIONS] \
213-
sameersbn/owncloud:10.0.9
213+
sameersbn/owncloud:10.0.10-0
214214
```
215215
216216
## Shell Access

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.0.9
1+
10.0.10-0

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313

1414
owncloud:
1515
restart: always
16-
image: sameersbn/owncloud:10.0.9
16+
image: sameersbn/owncloud:10.0.10-0
1717
command: app:owncloud
1818
environment:
1919
- DEBUG=false
@@ -41,7 +41,7 @@ services:
4141

4242
nginx:
4343
restart: always
44-
image: sameersbn/owncloud:10.0.9
44+
image: sameersbn/owncloud:10.0.10-0
4545
command: app:nginx
4646
environment:
4747
- OWNCLOUD_PHP_FPM_HOST=owncloud

kubernetes/nginx.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: nginx
10-
image: sameersbn/owncloud:10.0.9
10+
image: sameersbn/owncloud:10.0.10-0
1111
args: ["app:nginx"]
1212
env:
1313
- name: OWNCLOUD_URL

kubernetes/owncloud.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: owncloud
10-
image: sameersbn/owncloud:10.0.9
10+
image: sameersbn/owncloud:10.0.10-0
1111
args: ["app:owncloud"]
1212
env:
1313
- name: TZ

0 commit comments

Comments
 (0)