Skip to content

Commit

Permalink
Drop docker edge tags support
Browse files Browse the repository at this point in the history
Fixes: #42
  • Loading branch information
williamdes committed Aug 30, 2021
1 parent b19c8f1 commit fc4daf6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
9 changes: 4 additions & 5 deletions monitoring/check_phpmyadmin_docker.sh
Expand Up @@ -3,22 +3,21 @@
# This script will get a list of currently supported versions from phpmyadmin.net.
# For each version, it pulls the Docker image for each flavor, including major and minor
# version shortcuts (5, 5.0, and 5.0.0). We check that the expected version is listed in ChangeLog.
#
# This does not currently test 'edge' development versions.
#
# Future versions could use jq to parse package.json for the "version" field
#
#
# Written by Isaac Bennetch <bennetch@gmail.com>

supported_versions=$(curl -fsSL 'https://www.phpmyadmin.net/home_page/version.json'|jq -r '.releases|.[]|.version')

if [ "$1" == "-h" ] || [ "$1" == "--help" ]
then
echo "Checks whether the docker builds are current to the versions presented in the version.json file from phpmyadmin.net"
echo
echo ""
echo "Possible arguments:"
echo " -v --verbose Prints some progress output (usually runs silently)"
echo " -h --help Prints this help message"
exit
exit ""
fi

if [ "$1" == "-v" ] || [ "$1" == "--verbose" ]
Expand Down
9 changes: 0 additions & 9 deletions website/daily-snapshots
Expand Up @@ -50,12 +50,3 @@ rsync -va /mnt/storage/files/ cdn:/www/
# trigger website scan
cd /home/builder/website/
./manage.py import_files

# Trigger docker build for edge-4.9
./manage.py docker_trigger --tag edge-4.9

# Trigger docker build for edge-5.0
./manage.py docker_trigger --tag edge-5.0

# Trigger docker build for edge-5.1
./manage.py docker_trigger --tag edge-5.1

0 comments on commit fc4daf6

Please sign in to comment.