1.8 KiB
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 |
|
true | /assets/images/doublecommander.png | https://doublecmd.sourceforge.io/gallery/images/MainWindow.png | https://doublecmd.sourceforge.io/gallery/images/MainWindowDark.png |
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```

