diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml
index 59a10f5..d039eb0 100755
--- a/.github/ISSUE_TEMPLATE/issue.bug.yml
+++ b/.github/ISSUE_TEMPLATE/issue.bug.yml
@@ -4,74 +4,14 @@ description: Create a report to help us improve
title: "[BUG]
"
labels: [Bug]
body:
- - type: checkboxes
+ - type: markdown
attributes:
- label: Is there an existing issue for this?
- description: Please search to see if an issue already exists for the bug you encountered.
- options:
- - label: I have searched the existing issues
- required: true
- - type: textarea
- attributes:
- label: Current Behavior
- description: Tell us what happens instead of the expected behavior.
- validations:
- required: true
- - type: textarea
- attributes:
- label: Expected Behavior
- description: Tell us what should happen.
- validations:
- required: false
- - type: textarea
- attributes:
- label: Steps To Reproduce
- description: Steps to reproduce the behavior.
- placeholder: |
- 1. In this environment...
- 2. With this config...
- 3. Run '...'
- 4. See error...
- validations:
- required: true
- - type: textarea
- attributes:
- label: Environment
- description: |
- examples:
- - **OS**: Ubuntu 20.04
- - **How docker service was installed**: distro's packagemanager
value: |
- - OS:
- - How docker service was installed:
- render: markdown
- validations:
- required: false
- - type: dropdown
- attributes:
- label: CPU architecture
- options:
- - x86-64
- - arm64
- - armhf
- validations:
- required: true
- - type: textarea
- attributes:
- label: Docker creation
- description: |
- Command used to create docker container
- Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container
- render: bash
- validations:
- required: true
- - type: textarea
- attributes:
- description: |
- Provide a full docker log, output of "docker logs linuxserver.io"
- label: Container logs
- placeholder: |
- Output of `docker logs linuxserver.io`
- render: bash
- validations:
- required: true
+ # DEPRECATION NOTICE
+
+ This image is deprecated. We will not offer support for this image and it will not be updated.
+
+ The last working tag is:
+ 1.4.0-ls145
+ We recommend the official image instead:
+ https://hub.docker.com/r/guacamole/guacd
diff --git a/.github/ISSUE_TEMPLATE/issue.feature.yml b/.github/ISSUE_TEMPLATE/issue.feature.yml
index 099dcdb..70787f3 100755
--- a/.github/ISSUE_TEMPLATE/issue.feature.yml
+++ b/.github/ISSUE_TEMPLATE/issue.feature.yml
@@ -4,28 +4,14 @@ description: Suggest an idea for this project
title: "[FEAT] "
labels: [enhancement]
body:
- - type: checkboxes
+ - type: markdown
attributes:
- label: Is this a new feature request?
- description: Please search to see if a feature request already exists.
- options:
- - label: I have searched the existing issues
- required: true
- - type: textarea
- attributes:
- label: Wanted change
- description: Tell us what you want to happen.
- validations:
- required: true
- - type: textarea
- attributes:
- label: Reason for change
- description: Justify your request, why do you want it, what is the benefit.
- validations:
- required: true
- - type: textarea
- attributes:
- label: Proposed code change
- description: Do you have a potential code change in mind?
- validations:
- required: false
+ value: |
+ # DEPRECATION NOTICE
+
+ This image is deprecated. We will not offer support for this image and it will not be updated.
+
+ The last working tag is:
+ 1.4.0-ls145
+ We recommend the official image instead:
+ https://hub.docker.com/r/guacamole/guacd
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index b983c27..5fac3ce 100755
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,3 +1,11 @@
+# DEPRECATION NOTICE
+
+This image is deprecated. We will not offer support for this image and it will not be updated.
+The last working tag is:
+ 1.4.0-ls145
+We recommend the official image instead:
+https://hub.docker.com/r/guacamole/guacd
+
[linuxserverurl]: https://linuxserver.io
diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml
deleted file mode 100755
index a7d5036..0000000
--- a/.github/workflows/external_trigger.yml
+++ /dev/null
@@ -1,96 +0,0 @@
-name: External Trigger Main
-
-on:
- workflow_dispatch:
-
-jobs:
- external-trigger-master:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3.1.0
-
- - name: External Trigger
- if: github.ref == 'refs/heads/master'
- run: |
- if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_GUACD_MASTER }}" ]; then
- echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_GUACD_MASTER is set; skipping trigger. ****"
- exit 0
- fi
- echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_GUACD_MASTER\". ****"
- echo "**** Retrieving external version ****"
- EXT_RELEASE=$(echo 1.4.0)
- if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
- echo "**** Can't retrieve external version, exiting ****"
- FAILURE_REASON="Can't retrieve external version for guacd branch master"
- GHA_TRIGGER_URL="https://github.com/linuxserver/docker-guacd/actions/runs/${{ github.run_id }}"
- curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680,
- "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n**Trigger URL:** '"${GHA_TRIGGER_URL}"' \n"}],
- "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
- exit 1
- fi
- EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g')
- echo "**** External version: ${EXT_RELEASE} ****"
- echo "**** Retrieving last pushed version ****"
- image="linuxserver/guacd"
- tag="latest"
- token=$(curl -sX GET \
- "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fguacd%3Apull" \
- | jq -r '.token')
- multidigest=$(curl -s \
- --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
- --header "Authorization: Bearer ${token}" \
- "https://ghcr.io/v2/${image}/manifests/${tag}" \
- | jq -r 'first(.manifests[].digest)')
- digest=$(curl -s \
- --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
- --header "Authorization: Bearer ${token}" \
- "https://ghcr.io/v2/${image}/manifests/${multidigest}" \
- | jq -r '.config.digest')
- image_info=$(curl -sL \
- --header "Authorization: Bearer ${token}" \
- "https://ghcr.io/v2/${image}/blobs/${digest}")
- if [[ $(echo $image_info | jq -r '.container_config') == "null" ]]; then
- image_info=$(echo $image_info | jq -r '.config')
- else
- image_info=$(echo $image_info | jq -r '.container_config')
- fi
- IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}')
- IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}')
- if [ -z "${IMAGE_VERSION}" ]; then
- echo "**** Can't retrieve last pushed version, exiting ****"
- FAILURE_REASON="Can't retrieve last pushed version for guacd tag latest"
- curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680,
- "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}],
- "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
- exit 1
- fi
- echo "**** Last pushed version: ${IMAGE_VERSION} ****"
- if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then
- echo "**** Version ${EXT_RELEASE} already pushed, exiting ****"
- exit 0
- elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-guacd/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
- echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****"
- exit 0
- else
- echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****"
- response=$(curl -iX POST \
- https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-guacd/job/master/buildWithParameters?PACKAGE_CHECK=false \
- --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
- echo "**** Jenkins job queue url: ${response%$'\r'} ****"
- echo "**** Sleeping 10 seconds until job starts ****"
- sleep 10
- buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
- buildurl="${buildurl%$'\r'}"
- echo "**** Jenkins job build url: ${buildurl} ****"
- echo "**** Attempting to change the Jenkins job description ****"
- curl -iX POST \
- "${buildurl}submitDescription" \
- --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \
- --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
- --data-urlencode "Submit=Submit"
- echo "**** Notifying Discord ****"
- TRIGGER_REASON="A version change was detected for guacd tag latest. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}"
- curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
- "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}],
- "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
- fi
diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml
deleted file mode 100755
index 177d73a..0000000
--- a/.github/workflows/external_trigger_scheduler.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-name: External Trigger Scheduler
-
-on:
- schedule:
- - cron: '35 * * * *'
- workflow_dispatch:
-
-jobs:
- external-trigger-scheduler:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3.1.0
- with:
- fetch-depth: '0'
-
- - name: External Trigger Scheduler
- run: |
- echo "**** Branches found: ****"
- git for-each-ref --format='%(refname:short)' refs/remotes
- echo "**** Pulling the yq docker image ****"
- docker pull ghcr.io/linuxserver/yq
- for br in $(git for-each-ref --format='%(refname:short)' refs/remotes)
- do
- br=$(echo "$br" | sed 's|origin/||g')
- echo "**** Evaluating branch ${br} ****"
- ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-guacd/${br}/jenkins-vars.yml \
- | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch)
- if [ "$br" == "$ls_branch" ]; then
- echo "**** Branch ${br} appears to be live; checking workflow. ****"
- if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-guacd/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then
- echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****."
- curl -iX POST \
- -H "Authorization: token ${{ secrets.CR_PAT }}" \
- -H "Accept: application/vnd.github.v3+json" \
- -d "{\"ref\":\"refs/heads/${br}\"}" \
- https://api.github.com/repos/linuxserver/docker-guacd/actions/workflows/external_trigger.yml/dispatches
- else
- echo "**** Workflow doesn't exist; skipping trigger. ****"
- fi
- else
- echo "**** ${br} appears to be a dev branch; skipping trigger. ****"
- fi
- done
diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml
deleted file mode 100755
index efb595b..0000000
--- a/.github/workflows/package_trigger.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-name: Package Trigger Main
-
-on:
- workflow_dispatch:
-
-jobs:
- package-trigger-master:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3.1.0
-
- - name: Package Trigger
- if: github.ref == 'refs/heads/master'
- run: |
- if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_GUACD_MASTER }}" ]; then
- echo "**** Github secret PAUSE_PACKAGE_TRIGGER_GUACD_MASTER is set; skipping trigger. ****"
- exit 0
- fi
- if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-guacd/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
- echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****"
- exit 0
- fi
- echo "**** Package trigger running off of master branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_GUACD_MASTER\". ****"
- response=$(curl -iX POST \
- https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-guacd/job/master/buildWithParameters?PACKAGE_CHECK=true \
- --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
- echo "**** Jenkins job queue url: ${response%$'\r'} ****"
- echo "**** Sleeping 10 seconds until job starts ****"
- sleep 10
- buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
- buildurl="${buildurl%$'\r'}"
- echo "**** Jenkins job build url: ${buildurl} ****"
- echo "**** Attempting to change the Jenkins job description ****"
- curl -iX POST \
- "${buildurl}submitDescription" \
- --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \
- --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
- --data-urlencode "Submit=Submit"
diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml
deleted file mode 100755
index 483a9ba..0000000
--- a/.github/workflows/package_trigger_scheduler.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-name: Package Trigger Scheduler
-
-on:
- schedule:
- - cron: '30 8 * * 1'
- workflow_dispatch:
-
-jobs:
- package-trigger-scheduler:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3.1.0
- with:
- fetch-depth: '0'
-
- - name: Package Trigger Scheduler
- run: |
- echo "**** Branches found: ****"
- git for-each-ref --format='%(refname:short)' refs/remotes
- echo "**** Pulling the yq docker image ****"
- docker pull ghcr.io/linuxserver/yq
- for br in $(git for-each-ref --format='%(refname:short)' refs/remotes)
- do
- br=$(echo "$br" | sed 's|origin/||g')
- echo "**** Evaluating branch ${br} ****"
- ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-guacd/${br}/jenkins-vars.yml \
- | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch)
- if [ "${br}" == "${ls_branch}" ]; then
- echo "**** Branch ${br} appears to be live; checking workflow. ****"
- if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-guacd/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then
- echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****"
- triggered_branches="${triggered_branches}${br} "
- curl -iX POST \
- -H "Authorization: token ${{ secrets.CR_PAT }}" \
- -H "Accept: application/vnd.github.v3+json" \
- -d "{\"ref\":\"refs/heads/${br}\"}" \
- https://api.github.com/repos/linuxserver/docker-guacd/actions/workflows/package_trigger.yml/dispatches
- sleep 30
- else
- echo "**** Workflow doesn't exist; skipping trigger. ****"
- fi
- else
- echo "**** ${br} appears to be a dev branch; skipping trigger. ****"
- fi
- done
- echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****"
- echo "**** Notifying Discord ****"
- curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
- "description": "**Package Check Build(s) Triggered for guacd** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-guacd/activity/"' \n"}],
- "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
diff --git a/README.md b/README.md
index c2e70ee..e7d417b 100644
--- a/README.md
+++ b/README.md
@@ -27,6 +27,14 @@ Find us at:
* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
* [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
+# DEPRECATION NOTICE
+
+This image is deprecated. We will not offer support for this image and it will not be updated.
+The last working tag is:
+ 1.4.0-ls145
+We recommend the official image instead:
+https://hub.docker.com/r/guacamole/guacd
+
# [linuxserver/guacd](https://github.com/linuxserver/docker-guacd)
[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fguacd?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fguacd)
@@ -195,6 +203,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
+* **15.02.23:** - Deprecate image.
* **11.03.22:** - Bump to 1.4.0.
* **15.05.21:** - Add terminus font for SSH support.
* **08.05.21:** - Bump to 1.3.0, rebase to Alpine.
diff --git a/root/etc/cont-init.d/99-deprecation b/root/etc/cont-init.d/99-deprecation
new file mode 100755
index 0000000..34bda03
--- /dev/null
+++ b/root/etc/cont-init.d/99-deprecation
@@ -0,0 +1,23 @@
+#!/usr/bin/with-contenv bash
+
+echo '
+******************************************************
+******************************************************
+* *
+* *
+* This image is deprecated. *
+* We will not offer support for this image *
+* and it will not be updated. *
+* *
+* *
+******************************************************
+******************************************************
+
+The last working tag is:
+ 1.4.0-ls145
+We recommend the official image instead:
+https://hub.docker.com/r/guacamole/guacd
+
+
+******************************************************
+******************************************************'