unfortunately it did not help. After restart i still have to manually start the service…
I have changed it using SMB. I have entered the Path: Configfiles\system.d and edited the restart policy of the service service.system.docker.service using Notepad++ from Restart=on-abnormal to Restart=always. Now it is working as it should.
i installed the docker addon.
cant access portainer webif using port 9000…
I think docker doesn’t run. It will be fixed in next nightly build.
There is also workaround: Nextcloud container won't start - #3 by Rexter
ive done it via ssh and installed portainer with these commands:
docker volume create portainer_data
docker run -d --name portainer -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer:latest
docker start portainer
Does docker even run if you already using ssh.
Good afternoon!
How to get access to an external USB disk on VIM 3Pro in CoreeleC 20.0 when installing the Transmission container via the Portainer interface? I’m installing a container via a terminal tab and I’m getting an error. When I enter the code in the stack terminal I get an error: Deployment error -failed to deploy a stack: services.transmission.volumes must be a list. Is there a way to mount a usb disk to a container?
I enter the following docker-compose
---
version: "2.1"
services:
transmission:
image: lscr.io/linuxserver/transmission:latest
container_name: transmission
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- TRANSMISSION_WEB_HOME=/combustion-release/ #optional
- USER=username #optional
- PASS=password #optional
- WHITELIST=iplist #optional
- PEERPORT=peerport #optional
- HOST_WHITELIST=dnsname list #optional
volumes:
-v /path/to/data:/config
-v /path/to/downloads:/downloads
-v /path/to/watch/folder:/watch
-v /storage:/storage \
-v /media:/media \
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
restart: unless-stopped
Thank you for your attention!
I would advise you to read carefully about docker and adapt the file to your situation. The mounted device will appear in /var/media/yourdrive
You have errors in the docker-compose syntax: remove the backslash (\)
Thanks for your help, everything worked out. I can now place download files on a USB drive
version: "2.1"
services:
transmission:
image: lscr.io/linuxserver/transmission:latest
container_name: transmission
environment:
- PUID=0
- PGID=0
- TZ=Europe/London
- USER=root
- PASS=root
volumes:
- /var/lib/transmission/config:/config:rw
- /var/media/ADATA HV320/downloads:/downloads:rw
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
restart: unless-stoppedtype or paste code here