remove num_args, update version in dockerfiles

This commit is contained in:
Jonathan Baecker 2024-09-27 12:47:23 +02:00
parent cb71403f17
commit 35eac2fa16
4 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
FROM alpine:latest
ARG FFPLAYOUT_VERSION=0.24.0-rc1
ARG FFPLAYOUT_VERSION=0.24.0-beta5
ARG SHARED_STORAGE=false
ENV DB=/db

View File

@ -1,6 +1,6 @@
FROM alpine:latest
ARG FFPLAYOUT_VERSION=0.24.0-rc1
ARG FFPLAYOUT_VERSION=0.24.0-beta5
ARG SHARED_STORAGE=false
ENV DB=/db

View File

@ -1,6 +1,6 @@
FROM nvidia/cuda:12.5.0-runtime-rockylinux9
ARG FFPLAYOUT_VERSION=0.24.0-rc1
ARG FFPLAYOUT_VERSION=0.24.0-beta5
ARG SHARED_STORAGE=false
ENV DB=/db

View File

@ -100,12 +100,11 @@ pub struct Args {
#[clap(
long,
help_heading = Some("General"),
help = "import advanced channel configuration from file.",
num_args = 2
help = "import advanced channel configuration from file."
)]
pub import_advanced: Option<PathBuf>,
#[clap(long, help_heading = Some("General"), help = "import channel configuration from file.", num_args = 2)]
#[clap(long, help_heading = Some("General"), help = "import channel configuration from file.")]
pub import_config: Option<PathBuf>,
#[clap(long, help_heading = Some("General"), help = "List available channel ids")]