Run update.sh

This commit is contained in:
Docker Library Bot 2018-01-29 23:23:17 +00:00
parent bdb10b5dc9
commit cd2fcbd7b7
2 changed files with 8 additions and 8 deletions

View File

@ -16,9 +16,9 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`1.6.0`, `1.6`, `latest` (*1.6/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/8bf491be3e7a3e0959bd99c2a862d5590ef89d6d/1.6/Dockerfile)
- [`1.6.0-slim`, `1.6-slim`, `slim` (*1.6/slim/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/8bf491be3e7a3e0959bd99c2a862d5590ef89d6d/1.6/slim/Dockerfile)
- [`1.6.0-alpine`, `1.6-alpine`, `alpine` (*1.6/alpine/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/8bf491be3e7a3e0959bd99c2a862d5590ef89d6d/1.6/alpine/Dockerfile)
- [`1.6.1`, `1.6`, `latest` (*1.6/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/089cab9aeb7e5ae1fec8cdc9cd308711e1855c4d/1.6/Dockerfile)
- [`1.6.1-slim`, `1.6-slim`, `slim` (*1.6/slim/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/089cab9aeb7e5ae1fec8cdc9cd308711e1855c4d/1.6/slim/Dockerfile)
- [`1.6.1-alpine`, `1.6-alpine`, `alpine` (*1.6/alpine/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/089cab9aeb7e5ae1fec8cdc9cd308711e1855c4d/1.6/alpine/Dockerfile)
- [`1.5.3`, `1.5` (*1.5/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/f2528c0158d465f96f311faa19aff3cffb4e7f25/1.5/Dockerfile)
- [`1.5.3-slim`, `1.5-slim` (*1.5/slim/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/f2528c0158d465f96f311faa19aff3cffb4e7f25/1.5/slim/Dockerfile)
- [`1.5.3-alpine`, `1.5-alpine` (*1.5/alpine/Dockerfile*)](https://github.com/c0b/docker-elixir/blob/f2528c0158d465f96f311faa19aff3cffb4e7f25/1.5/alpine/Dockerfile)

View File

@ -108,7 +108,7 @@ Nextcloud:
Database:
- `/var/lib/mysql` MySQL / MariaDB Data
- `/var/lib/postresql/data` PostegreSQL Data
- `/var/lib/postgresql/data` PostgreSQL Data
```console
$ docker run -d \
@ -400,18 +400,18 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som
```console
docker cp ./data/ nextcloud_app_1:/var/www/html/data
docker-compose exec app chown www-data:www-data /var/www/html/data
docker-compose exec app chown -R www-data:www-data /var/www/html/data
docker cp ./theming/ nextcloud_app_1:/var/www/html/theming
docker-compose exec app chown www-data:www-data /var/www/html/theming
docker-compose exec app chown -R www-data:www-data /var/www/html/theming
docker cp ./config/config.php nextcloud_app_1:/var/www/html/config
docker-compose exec app chown www-data:www-data /var/www/html/config
docker-compose exec app chown -R www-data:www-data /var/www/html/config
```
5. Copy only the custom apps you use (or simply redownload them from the web interface):
```console
docker cp ./apps/ nextcloud_data:/var/www/html/custom_apps
docker-compose exec app chown www-data:www-data /var/www/html/custom_apps
docker-compose exec app chown -R www-data:www-data /var/www/html/custom_apps
```
# Questions / Issues