website/_posts/2021-08-04-doublecommander-docker-container.md
sthope 0506f02b43
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2021-09-04 02:52:02 +02:00

1.8 KiB

layout title description author image categories comments logo doublecmd_normal doublecmd_dark
post Double Commander 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. sthope
Docker
Portainer
Stack
LinuxServer
true /assets/images/doublecommander.png https://doublecmd.sourceforge.io/gallery/images/MainWindow.png https://doublecmd.sourceforge.io/gallery/images/MainWindowDark.png

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}})