--- layout: post title: "Double Commander" description: "Double Commander is a free and open-source multi-platform two-panel orthodox file manager that is inspired by the Microsoft Windows-only Total Commander." author: sthope image: "" categories: [ Docker, Portainer, Stack, LinuxServer ] comments: true logo: "/assets/images/doublecommander.png" doublecmd_normal: "https://doublecmd.sourceforge.io/gallery/images/MainWindow.png" doublecmd_dark: "https://doublecmd.sourceforge.io/gallery/images/MainWindowDark.png" --- ![logo]({{page.logo}})

Portainer Stack

``` --- version: "3.8" services: doublecommander: image: ghcr.io/linuxserver/doublecommander:latest container_name: doublecommander network_mode: bridge environment: - PUID=1000 - PGID=1000 - TZ=Europe/Amsterdam volumes: - /docker/doublecommander:/config - /docker:/data ports: - 52486:3000 restart: unless-stopped ```
PUID userID check with: ID $USER
PGID groupID check with: ID $USER
TZ your TimeZone
Volume /config DoubleCommander configs folder
Volume /data Folder you want to access with DoubleCommander
Port 52486 http port where the container is running

Create folder with e.g.: ```mkdir -p /docker/doublecommander```



![dark]({{page.doublecmd_dark}})



![normal]({{page.doublecmd_normal}})