File Browser

Introduction

File Browser is an open-source, self-hosted file browser.

The Docker Compose File

---
services:
  filebrowser:
    image: docker.io/filebrowser/filebrowser:latest
    container_name: filebrowser
    hostname: filebrowser
    restart: unless-stopped
    security_opt:
      - no-new-privileges:true
    environment:
      - TZ=Europe/Stockholm
      - PUID=1000
      - PGID=1000
    ports:
      - 8080:8080/tcp
    volumes:
      - $HOME/containers/storage/filebrowser/config:/config:rw
      - $HOME/containers/storage/filebrowser/database:/database:rw
      - /:/srv
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    labels:
      - com.centurylinklabs.watchtower.enable=true

docker-compose.yml

This Docker Compose file defines a single service named “filebrowser”. The service is built from the “filebrowser/filebrowser:latest” Docker image, which is the latest version available. The container name is set to “filebrowser” as well.

The “restart” section ensures that the container will always be restarted if it exits (unless manually stopped). This is useful for ensuring that the service is always available, especially if it crashes or is shut down unexpectedly.

The “security_opt” section prevents your container processes from gaining additional privileges. This is an important security consideration.

By default, File Browser runs on port 8080, but you can change it if necessary.

The “volumes” section maps the config and database folders to their local storage locations.

The "labels" section allows the Watchtower service to keep this container update automatically.

Remember to create all folders and files before trying to launch your docker-compose.

Running Filebrowser with Docker Compose

To run File Browser with Docker Compose, first, make sure you have Docker and Docker Compose installed on your machine. Then, create a new directory for your project and save the above Docker Compose file as “docker-compose.yml” in that directory.

Next, run the following command from the same directory:

docker compose up -d

This command will start the File Browser container in the background and detach from it. You can then access the File Browser web interface by going to http://localhost:8080 in your web browser.

Conclusion

In this article, we explored how to set up and run the File Browser software using Docker Compose. We looked at the different sections of the Docker Compose file and explained how they work together to create a functional File Browser service. By running File Browser with Docker Compose, you can easily deploy and manage the tool on your own server, without having to worry about dependencies or configuration.