Docker: Deluge config files missing
Posted: Fri Dec 08, 2023 6:01 pm
Hi,
the config files of my docker deluge installation seem to be missing on the host machine. The config changes still get saved so the config files probably exist inside the docker container but they're missing outside of the container.
This is my docker compose of deluge:
deluge:
container_name: deluge
image: linuxserver/deluge:latest
restart: unless-stopped
network_mode: service:vpn # run on the vpn network
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${CONFIG}/deluge:/config/deluge # config files
- ${DATA}/downloads:/media/downloads/ # downloads folder
The ${CONFIG} leads to /config so the config files should be saved in /config/deluge but the directory is empty. Deluge is working fine even trough multiple restarts but I want to add the AutoRemove Plugin for which I need access to the config files. Does anyone have an Idea where I can find the config files in such a Situation?
EDIT: The /config/deluge directory inside the docker container is empty as well.
the config files of my docker deluge installation seem to be missing on the host machine. The config changes still get saved so the config files probably exist inside the docker container but they're missing outside of the container.
This is my docker compose of deluge:
deluge:
container_name: deluge
image: linuxserver/deluge:latest
restart: unless-stopped
network_mode: service:vpn # run on the vpn network
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${CONFIG}/deluge:/config/deluge # config files
- ${DATA}/downloads:/media/downloads/ # downloads folder
The ${CONFIG} leads to /config so the config files should be saved in /config/deluge but the directory is empty. Deluge is working fine even trough multiple restarts but I want to add the AutoRemove Plugin for which I need access to the config files. Does anyone have an Idea where I can find the config files in such a Situation?
EDIT: The /config/deluge directory inside the docker container is empty as well.