0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-06-15 15:54:47 +02:00

Use pull to correctly pull a newer base image

This commit is contained in:
Marc Brückner 2017-04-12 15:56:31 +02:00 committed by Marc Brückner
parent 7208308a18
commit 7bd5811675

View file

@ -201,7 +201,7 @@ If you use your own Dockerfile you need to configure your docker-compose file ac
Updating your own derived image is also very simple. When a new version of the nextcloud image is available run: Updating your own derived image is also very simple. When a new version of the nextcloud image is available run:
```console ```console
docker build -t your-name --no-cache . docker build -t your-name --pull .
docker run -d your-name docker run -d your-name
``` ```
@ -209,7 +209,7 @@ docker run -d your-name
or for docker-compose: or for docker-compose:
```console ```console
docker-compose build --no-cache docker-compose build --pull
docker-compose up -d docker-compose up -d
``` ```