diff --git a/images/docker-pydio-cells.md b/images/docker-pydio-cells.md index c42f06105..a44d80e5a 100755 --- a/images/docker-pydio-cells.md +++ b/images/docker-pydio-cells.md @@ -41,7 +41,7 @@ docker create \ -e TZ=Europe/London \ -e EXTERNALURL=yourdomain.url \ -p 8080:8080 \ - -v :/config \ + -v /path/to/appdata/config:/config \ --restart unless-stopped \ linuxserver/pydio-cells ``` @@ -65,7 +65,7 @@ services: - TZ=Europe/London - EXTERNALURL=yourdomain.url volumes: - - :/config + - /path/to/appdata/config:/config ports: - 8080:8080 restart: unless-stopped @@ -121,6 +121,8 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel You must first create a mysql database for Pydio Cells. Using our [mariadb image](https://hub.docker.com/r/linuxserver/mariadb) is recommended. +Then access the web gui setup wizard at `http://SERVER_IP:8080` + ## Docker Mods [![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27pydio-cells%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=pydio-cells "view available mods for this container.") @@ -141,5 +143,6 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to ## Versions +* **17.04.20:** - Update compile options, previous release was broken for new installs. * **19.12.19:** - Rebasing to alpine 3.11. * **12.12.19:** - Initial Release