⚠️ Warning: This documentation refers to the proof-of-concept implementation of Wildland client (opens new window) which is no longer maintained. We are currently working on a new Wildland client written in Rust. To learn more about Wildland and the current status of its development, please visit the Wildland.io webpage (opens new window).
# Linux
# Run Wildland client in a Docker container (recommended)
The most convenient way to use the Wildland client on Linux is via the provided Docker image.
First make sure that you have Docker Engine and Docker Compose installed on your system. If you haven't installed it yet, follow the steps described in the handy tutorials prepared by the Docker team:
By default the Docker daemon runs as the root user. To run Docker containers as a non-root user, create a group called docker and add your user to it:
Create the
dockergroup by executing the following command:$ sudo groupadd dockerAdd your user to the
dockergroup.$ sudo usermod -aG docker $USERLog out and log back in so that the changes from the previous steps take effect.
Once you have Docker Engine and Docker Compose installed and properly configured with your system, clone the
masterbranch of the Wildland client from the project's GitLab repository (opens new window) usinggit clone(if you have never usedgitbefore please install it by following the instructions available here (opens new window)):$ git clone -b master https://gitlab.com/wildland/wildland-client.gitNext, change the working directory to
wildland-client/docker:$ cd wildland-client/docker/Build the Docker image:
$ docker-compose buildRun it:
$ docker-compose run --service-ports wildland-client
You can now connect with Wildland using WebDAV and a file manager of your choice (Nautilus, Konqueror, Thunar, Dolphin, etc.) by typing dav://localhost:8080/ in the address bar.
Now, head over to the Quick Start Guide and follow the instructions there.
# Run Wildland client directly
Clone the
masterbranch of Wildland client from the project's GitLab repository (opens new window):$ git clone -b master https://gitlab.com/wildland/wildland-client.gitChange your working directory to wildland-client:
$ cd wildland-clientRun Wildland client:
$ ./wildland-docker.shFollow the instructions available at Quick Start Guide.
← Public Forests macOS →