-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Change development image tags to "development" so that branch name and tag name are the same (and we don't need any logic to translate between branch names and tag names) - Also build images for release-1.9 branch - Also re-build images if their build workflow changes
- Loading branch information
Showing
27 changed files
with
135 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
export DOCKER_SCAN_SUGGEST=false | ||
docker build . -t ghcr.io/utrechtuniversity/davrods:dev-1.9 "$@" | ||
docker build . -t "ghcr.io/utrechtuniversity/davrods:development" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ FROM centos:7 | |
LABEL maintainer="Yoda team <[email protected]>" | ||
|
||
# Application settings | ||
ARG TAG=development | ||
ENV YODA_EUS_REPO "https://github.com/UtrechtUniversity/yoda-external-user-service.git" | ||
ENV YODA_EUS_BRANCH "development" | ||
ENV YODA_PORTAL_REPO "https://github.com/UtrechtUniversity/yoda-portal.git" | ||
|
@@ -70,4 +71,4 @@ RUN cp -Rdp /var/www/extuser /var/www/extuser-copy | |
VOLUME [ "/sys/fs/cgroup" ] | ||
COPY yoda_eus_init.sh /var/lib/irods/scripts/yoda_eus_init.sh | ||
RUN chmod 0755 /var/lib/irods/scripts/yoda_eus_init.sh | ||
CMD ["/var/lib/irods/scripts/yoda_eus_init.sh"] | ||
CMD ["/var/lib/irods/scripts/yoda_eus_init.sh", "${TAG}"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
export DOCKER_SCAN_SUGGEST=false | ||
docker build . -t ghcr.io/utrechtuniversity/yoda-eus:dev-1.9 "$@" | ||
docker build . -t ghcr.io/utrechtuniversity/yoda-eus:development "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ FROM centos:7 | |
LABEL maintainer="Yoda team <[email protected]>" | ||
|
||
# Application settings | ||
ARG TAG=development | ||
ENV IRODS_VERSION "4.2.12" | ||
ENV IRODS_PREP_VERSION "4.2.12.0" | ||
ENV IRODS_INDEX_VERSION "4.2.12.0-1" | ||
|
@@ -182,4 +183,4 @@ COPY irods-icat-init.sh /var/lib/irods/scripts/irods-icat-init.sh | |
RUN chmod 0755 /var/lib/irods/scripts/irods-icat-init.sh | ||
|
||
VOLUME [ "/sys/fs/cgroup" ] | ||
CMD ["/var/lib/irods/scripts/irods-icat-init.sh"] | ||
CMD ["/var/lib/irods/scripts/irods-icat-init.sh", "${TAG}"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
export DOCKER_SCAN_SUGGEST=false | ||
docker build . -t ghcr.io/utrechtuniversity/yoda-provider:dev-1.9 "$@" | ||
docker build . -t ghcr.io/utrechtuniversity/yoda-provider:development "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ FROM centos:7 | |
LABEL maintainer="Yoda team <[email protected]>" | ||
|
||
# Application settings | ||
ARG TAG=development | ||
ENV YODA_PORTAL_REPO "https://github.com/UtrechtUniversity/yoda-portal.git" | ||
ENV YODA_PORTAL_BRANCH "development" | ||
|
||
|
@@ -55,4 +56,4 @@ RUN cp -Rdp /var/www/yoda /var/www/yoda-copy | |
VOLUME [ "/sys/fs/cgroup" ] | ||
COPY yoda_portal_init.sh /var/lib/irods/scripts/yoda_portal_init.sh | ||
RUN chmod 0755 /var/lib/irods/scripts/yoda_portal_init.sh | ||
CMD ["/var/lib/irods/scripts/yoda_portal_init.sh"] | ||
CMD ["/var/lib/irods/scripts/yoda_portal_init.sh", "${TAG}"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
export DOCKER_SCAN_SUGGEST=false | ||
docker build . -t ghcr.io/utrechtuniversity/yoda-portal:dev-1.9 "$@" | ||
docker build . -t ghcr.io/utrechtuniversity/yoda-portal:development "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ FROM centos:7 | |
LABEL maintainer="Yoda team <[email protected]>" | ||
|
||
# Application settings | ||
ARG TAG=development | ||
ENV MOAI_REPO "https://github.com/UtrechtUniversity/yoda-moai.git" | ||
ENV MOAI_BRANCH "development" | ||
|
||
|
@@ -96,4 +97,4 @@ RUN cp -Rdp /var/www/moai/yoda-moai /var/www/moai/yoda-moai-copy | |
VOLUME [ "/sys/fs/cgroup" ] | ||
COPY yoda_public_init.sh /yoda_public_init.sh | ||
RUN chmod 0755 /yoda_public_init.sh | ||
CMD ["/yoda_public_init.sh"] | ||
CMD ["/yoda_public_init.sh", "${TAG}"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
export DOCKER_SCAN_SUGGEST=false | ||
docker build . -t ghcr.io/utrechtuniversity/yoda-public:dev-1.9 "$@" | ||
docker build . -t ghcr.io/utrechtuniversity/yoda-public:development "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.