Title logo
linuxserver/doublecommander.

6,098,727 39 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/doublecommander
Build Time 17 Apr 2024 19:58:01
Category File Management
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest version-05a2665a 17 Apr 2024 at 19:58:01

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  doublecommander:
    image: linuxserver/doublecommander:version-05a2665a
    container_name: doublecommander
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use EG Europe/London.
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
    volumes:
      - /host/path/to/data:/data # Host data directories, mount as many as needed.
      - /host/path/to/config:/config # Users home directory in the container, stores program settings.
    ports:
      - 3000:3000/tcp # Double Commander desktop gui.

CLI

docker create \
  --name=doublecommander \
  -e TZ=Europe/London `# Specify a timezone to use EG Europe/London.` \
  -e PUID=1000 `# for UserID` \
  -e PGID=1000 `# for GroupID` \
  -v /host/path/to/data:/data `# Host data directories, mount as many as needed.` \
  -v /host/path/to/config:/config `# Users home directory in the container, stores program settings.` \
  -p 3000:3000/tcp `# Double Commander desktop gui.` \
  --restart unless-stopped \
  linuxserver/doublecommander:version-05a2665a