diff --git a/Dockerfile b/Dockerfile index 68cd73e..c1860ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntujammy +FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntunoble # set version label ARG BUILD_DATE @@ -40,6 +40,7 @@ RUN \ ln -s \ /usr/lib/x86_64-linux-gnu/libportaudio.so.2 \ /usr/lib/x86_64-linux-gnu/libportaudio.so && \ + printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Jenkinsfile b/Jenkinsfile index 9cec5c8..4f50a54 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,8 +33,8 @@ pipeline { CI_PORT = '3000' CI_SSL = 'false' CI_DELAY = '120' - CI_DOCKERENV = 'TZ=US/Pacific' - CI_AUTH = 'user:password' + CI_DOCKERENV = '' + CI_AUTH = '' CI_WEBPATH = '' } stages { diff --git a/README.md b/README.md index d82df18..d018444 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ services: - PGID=1000 - TZ=Etc/UTC volumes: - - /path/to/config:/config + - /path/to/audacity/config:/config ports: - 3000:3000 - 3001:3001 @@ -145,7 +145,7 @@ docker run -d \ -e TZ=Etc/UTC \ -p 3000:3000 \ -p 3001:3001 \ - -v /path/to/config:/config \ + -v /path/to/audacity/config:/config \ --restart unless-stopped \ lscr.io/linuxserver/audacity:latest ``` @@ -324,6 +324,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **19.08.24:** - Rebase to noble. * **10.02.24:** - Update Readme with new env vars, ingest proper PWA icon, and pre-extract appimage. * **05.05.23:** - Start Audacity in full screen. * **18.03.23:** - Rebase to KasmVNC base image. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index c7a6fb3..dac7b03 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -22,6 +22,6 @@ repo_vars: - CI_PORT = '3000' - CI_SSL = 'false' - CI_DELAY = '120' - - CI_DOCKERENV = 'TZ=US/Pacific' - - CI_AUTH = 'user:password' + - CI_DOCKERENV = '' + - CI_AUTH = '' - CI_WEBPATH = '' diff --git a/readme-vars.yml b/readme-vars.yml index 6fd3b45..8ecc48e 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -18,12 +18,9 @@ development_versions: false # container parameters common_param_env_vars_enabled: true param_container_name: "{{ project_name }}" -param_usage_include_env: true -param_env_vars: - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "/path/to/config", desc: "Users home directory in the container, stores program settings and images" } + - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Users home directory in the container, stores program settings and images" } param_usage_include_ports: true param_ports: - { external_port: "3000", internal_port: "3000", port_desc: "Audacity desktop gui." } @@ -86,6 +83,7 @@ app_setup_block: | # changelog changelogs: + - { date: "19.08.24:", desc: "Rebase to noble." } - { date: "10.02.24:", desc: "Update Readme with new env vars, ingest proper PWA icon, and pre-extract appimage." } - { date: "05.05.23:", desc: "Start Audacity in full screen." } - { date: "18.03.23:", desc: "Rebase to KasmVNC base image." }