Hello,
I have just recently set up a Open Media Vault NAS and I am having trouble trying to figure out how to install the docker.
I tried using stacks in Portainer but I am getting this error. "Deployment error unsupported compose file version 1.0"
This was my attempt.
nextpvr:
image: nextpvr/nextpvr_amd64table
container_name: nextpvr
network_mode: host
environment:
- PUID=998
- PGID=100
- TZ=America/Los_Angeles
volumes:
-/srv/dev-disk-by-label-Media/one/nextpvr/config:/config \
-/srv/dev-disk-by-label-Media/one/nextpvr/videos:/recordings \
-/srv/dev-disk-by-label-Media/one/nextpvr/buffer:/buffer \
ports:
- "8866:8866"
restart: unless-stopped
I am totally lost on how to deploy the docker container and I have no clue how to install it as I am brand new to all of this,
my aging brain is probably not helping. I can pull the docker image and it shows up in my images but I don't know how to configure it.
Thanks.
OK, I got rid of the compose file version error by adding a version: "3" line at the top and now get a new error "volumes must be a mapping" I thought that was what I was doing with
volumes:
-/srv/dev-disk-by-label-Media/one/nextpvr/config:/config \
-/srv/dev-disk-by-label-Media/one/nextpvr/videos:/recordings \
-/srv/dev-disk-by-label-Media/one/nextpvr/buffer:/buffer \
which are shared folders I setup and the absolute path.
I tried using putty with the
docker run -d \
--volume /srv/dev-disk-by-label-Media/one/nextpvr/config:/config \
--volume /srv/dev-disk-by-label-Media/one/nextpvr/videos:/recordings \
--volume /srv/dev-disk-by-label-Media/one/nextpvr/buffer:/buffer \
--publish 8866:8866 \
nextpvr/nextpvr_amd64:latest
and get "docker: invalid reference format."
I have just recently set up a Open Media Vault NAS and I am having trouble trying to figure out how to install the docker.
I tried using stacks in Portainer but I am getting this error. "Deployment error unsupported compose file version 1.0"
This was my attempt.
nextpvr:
image: nextpvr/nextpvr_amd64table
container_name: nextpvr
network_mode: host
environment:
- PUID=998
- PGID=100
- TZ=America/Los_Angeles
volumes:
-/srv/dev-disk-by-label-Media/one/nextpvr/config:/config \
-/srv/dev-disk-by-label-Media/one/nextpvr/videos:/recordings \
-/srv/dev-disk-by-label-Media/one/nextpvr/buffer:/buffer \
ports:
- "8866:8866"
restart: unless-stopped
I am totally lost on how to deploy the docker container and I have no clue how to install it as I am brand new to all of this,
my aging brain is probably not helping. I can pull the docker image and it shows up in my images but I don't know how to configure it.
Thanks.
OK, I got rid of the compose file version error by adding a version: "3" line at the top and now get a new error "volumes must be a mapping" I thought that was what I was doing with
volumes:
-/srv/dev-disk-by-label-Media/one/nextpvr/config:/config \
-/srv/dev-disk-by-label-Media/one/nextpvr/videos:/recordings \
-/srv/dev-disk-by-label-Media/one/nextpvr/buffer:/buffer \
which are shared folders I setup and the absolute path.
I tried using putty with the
docker run -d \
--volume /srv/dev-disk-by-label-Media/one/nextpvr/config:/config \
--volume /srv/dev-disk-by-label-Media/one/nextpvr/videos:/recordings \
--volume /srv/dev-disk-by-label-Media/one/nextpvr/buffer:/buffer \
--publish 8866:8866 \
nextpvr/nextpvr_amd64:latest
and get "docker: invalid reference format."