Sign inSign up

dockerpirate/docker-pydio

By dockerpirate

Updated over 6 years ago

Fork - Git versioning activated

Image
1

906

dockerpirate/docker-pydio repository overview

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.

pydio

Supported Architectures

The architectures supported by this image are:

ArchitectureTag
arm64linux/arm64
arm_v7linux/arm/v7
arm_v6linux/arm/v6

Usage

Here are some example snippets to help you get started creating a container.

docker
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 

Parameters

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.

ParameterFunction
-p 443WebUI
-e PUID=1000for UserID - see below for explanation
-e PGID=1000for GroupID - see below for explanation
-e TZ=Europe/LondonSpecify a timezone to use EG Europe/London.
-v /configWhere pydio should store it's configuration files.
-v /dataWhere pydio should store uploaded files.
-v /data2Second Storage (optional) - Git versionning activated

Environment variables from files (Docker secrets)

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.

User / Group Identifiers

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)

 

Application Setup

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.

Docker Mods

Docker Mods

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.

Support Info

  • Shell access whilst the container is running: docker exec -it pydio /bin/bash
  • To monitor the logs of the container in realtime: docker logs -f pydio
  • container version number
    • docker inspect -f '{{ index .Config.Labels "build_version" }}' pydio
  • image version number
    • docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/pydio

linuxserver/pydio

Tag summary

Content type

Image

Digest

Size

69.9 MB

Last updated

over 6 years ago

docker pull dockerpirate/docker-pydio