This commit is contained in:
Sameer Naik 2016-10-16 19:19:30 +05:30
Родитель 04a4d63a54
Коммит e4bfa46594
5 изменённых файлов: 14 добавлений и 14 удалений

Просмотреть файл

@ -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.53-2
# sameersbn/nextcloud:9.0.54
- [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.53-2
docker pull sameersbn/nextcloud:9.0.54
```
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.53-2 app:nextcloud
sameersbn/nextcloud:9.0.54 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.53-2 app:nginx
sameersbn/nextcloud:9.0.54 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.53-2 app:backup:create
sameersbn/nextcloud:9.0.54 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.53-2 app:backup:restore
sameersbn/nextcloud:9.0.54 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.53-2 app:backup:restore BACKUP=1417624827_nextcloud_backup.tar
sameersbn/nextcloud:9.0.54 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.53-2
docker pull sameersbn/nextcloud:9.0.54
```
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.53-2
sameersbn/nextcloud:9.0.54
```
## Shell Access

Просмотреть файл

@ -1 +1 @@
9.0.53-2
9.0.54

Просмотреть файл

@ -10,7 +10,7 @@ postgresql:
nextcloud:
restart: always
image: sameersbn/nextcloud:9.0.53-2
image: sameersbn/nextcloud:9.0.54
command: app:nextcloud
environment:
- DEBUG=false
@ -31,7 +31,7 @@ nextcloud:
- /srv/docker/nextcloud/nextcloud:/var/lib/nextcloud
nginx:
image: sameersbn/nextcloud:9.0.53-2
image: sameersbn/nextcloud:9.0.54
command: app:nginx
environment:
- NEXTCLOUD_PHP_FPM_HOST=

Просмотреть файл

@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: nextcloud
image: sameersbn/nextcloud:9.0.53-2
image: sameersbn/nextcloud:9.0.54
args: ["app:nextcloud"]
env:
- name: TZ

Просмотреть файл

@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: nginx
image: sameersbn/nextcloud:9.0.53-2
image: sameersbn/nextcloud:9.0.54
args: ["app:nginx"]
env:
- name: NEXTCLOUD_URL