I'm trying to setup Plex on my EONNAS running RPI "Bookworm" OMV7 is up and running but when I try to get Plex compose file up I get the following error:
Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LANG=C.UTF-8; export LANGUAGE=; docker compose --file '/srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/compose/plex/plex.yml' --env-file '/srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/compose/plex/plex.env' --env-file '/srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/compose/global.env' stop 2>&1': yaml: line 7: could not find expected ':'
OMV\ExecException: Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LANG=C.UTF-8; export LANGUAGE=; docker compose --file '/srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/compose/plex/plex.yml' --env-file '/srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/compose/plex/plex.env' --env-file '/srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/compose/global.env' stop 2>&1': yaml: line 7: could not find expected ':' in /usr/share/openmediavault/engined/rpc/compose.inc:805
Stack trace:
#0 /usr/share/php/openmediavault/rpc/serviceabstract.inc(622): OMVRpcServiceCompose->{closure}()
#1 /usr/share/openmediavault/engined/rpc/compose.inc(780): OMV\Rpc\ServiceAbstract->execBgProc()
#2 [internal function]: OMVRpcServiceCompose->doCommand()
#3 /usr/share/php/openmediavault/rpc/serviceabstract.inc(122): call_user_func_array()
#4 /usr/share/php/openmediavault/rpc/rpc.inc(86): OMV\Rpc\ServiceAbstract->callMethod()
#5 /usr/sbin/omv-engined(544): OMV\Rpc\Rpc::call()
#6 {main}
I've tried to modify the file multiple times but get the same error!
Here is a copy of my Plex file:
version: "2.1"
services:
plex:
image: lscr.io/linuxserver/plex:latest
container_name:plex
network_mode:host
environment:
- PUID=10001
- PGID=100
- TZ=America/New_York
- VERSION=docker
volumes:
- /srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/Config
- /srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/compose
- /srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/containers
- /srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/Kids_Movies
- /srv/dev-disk-by-uuid-ab56014e-18d0-4bee-9cc6-b9cfc449513b/Kids_TV
- /srv/dev-disk-by-uuid-27c09db7-c5f4-46b5-a23e-0f49844e2209/Movies
- /srv/dev-disk-by-uuid-9db08f09-45c7-48b4-afc5-17fd6cf58b9e/TV_Shows
- /srv/dev-disk-by-uuid-27c09db7-c5f4-46b5-a23e-0f49844e2209/Music
restart: unless-stopped
Any help will be appreciated