- 233
- 14
- Operating system
- macOS
- Mobile operating system
- iOS
Last edited:
version: "2.4" is the first line of compose file, which works for sonarr/radarr etc, and guessing might be the glitch for Transmission.
Deployment error
Docker compose
[Code}
version: "2.4"
services:
[/CODE]
If that Transmission block is removed from the compose, everything works as expected.
Deployment error
Docker compose
[Code}
version: "2.4"
services:
[/CODE]
Code:
transmission:
image: linuxserver/transmission:latest
restart: always
container_name: transmission-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/transmission:/media-store/transmission:rw
- /volume1/docker/media-center-config/transmission:/config:rw
networks:
default: {}
ports:
- 9091:9091
If that Transmission block is removed from the compose, everything works as expected.