File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ A Moodle PHP environment configured for Moodle development based on [Official PH
66
77| PHP Version | Variant | Tags | Status |
88| --------------| ---------| ------------------| --------|
9- | PHP 7.2 | Buster | 7.2-buster | [ ![ Build Status] ( https://travis-ci.org/moodlehq/moodle-php-apache.svg?branch=7.2-buster )] ( https://travis-ci.org/moodlehq/moodle-php-apache ) |
9+ | PHP 7.2 | Buster | 7.2, 7.2 -buster | [ ![ Build Status] ( https://travis-ci.org/moodlehq/moodle-php-apache.svg?branch=7.2-buster )] ( https://travis-ci.org/moodlehq/moodle-php-apache ) |
1010
1111For a complete list of supported versions, look to the [ master README] ( https://github.com/moodlehq/moodle-php-apache/tree/master ) .
1212
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+
5+ # A space-separated list of additional tags to place on this image.
6+ additionalTags=(7.2)
7+
8+ # Tag and push image for each additional tag
9+ for tag in ${additionalTags[@]} ; do
10+ echo " Tagging {$IMAGE_NAME } as ${DOCKER_REPO} :${tag} "
11+ docker tag $IMAGE_NAME ${DOCKER_REPO} :${tag}
12+
13+ echo " Pushing ${DOCKER_REPO} :${tag} "
14+ docker push ${DOCKER_REPO} :${tag}
15+ done
You can’t perform that action at this time.
0 commit comments