Fork - Git versioning activated
906
Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.
The architectures supported by this image are:
| Architecture | Tag |
|---|---|
| arm64 | linux/arm64 |
| arm_v7 | linux/arm/v7 |
| arm_v6 | linux/arm/v6 |
Here are some example snippets to help you get started creating a container.
docker run -d \
--name=pydio \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/Berlin \
-p 8888:443 \
-v <path to data>:/config \
-v <path to data>:/data \
-v <path to data>:/data2 \
--restart unless-stopped \
dockerpirate/docker-pydio
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal> respectively. For example, -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 outside the container.
| Parameter | Function |
|---|---|
-p 443 | WebUI |
-e PUID=1000 | for UserID - see below for explanation |
-e PGID=1000 | for GroupID - see below for explanation |
-e TZ=Europe/London | Specify a timezone to use EG Europe/London. |
-v /config | Where pydio should store it's configuration files. |
-v /data | Where pydio should store uploaded files. |
-v /data2 | Second Storage (optional) - Git versionning activated |
You can set any environment variable from a file by using a special prepend FILE__.
As an example:
-e FILE__PASSWORD=/run/secrets/mysecretpassword
Will set the environment variable PASSWORD based on the contents of the /run/secrets/mysecretpassword file.
When using volumes (-v flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID and group PGID.
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
In this instance PUID=1000 and PGID=1000, to find yours use id user as below:
$ id username
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
You must create a user and database for pydio to use in a mysql/mariadb or postgresql server. You can use sqlite with no further config needed, but this should only be considered for testing purposes. In the setup page for database, use the ip address rather than hostname...
Self-signed keys are generated the first time you run the container and can be found in /config/keys , if needed, you can replace them with your own.
For public link sharing to function correctly be sure to change the Detected Server Url to the URL of your pydio instance in the setup wizard.
For email settings edit the file /config/ssmtp.conf and restart the container.
We publish various Docker Mods to enable additional functionality within the containers. The list of Mods available for this image (if any) can be accessed via the dynamic badge above.
docker exec -it pydio /bin/bashdocker logs -f pydiodocker inspect -f '{{ index .Config.Labels "build_version" }}' pydiodocker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/pydioContent type
Image
Digest
Size
69.9 MB
Last updated
over 6 years ago
docker pull dockerpirate/docker-pydio