-
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.
Docker images: check out matching branches
Ensure that code branches in containers match the branch that the container was built for.
- Loading branch information
Showing
5 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,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" | ||
ENV YODA_PORTAL_BRANCH="$TAG" | ||
|
||
# Network settings | ||
EXPOSE 80 | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,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" | ||
ENV MOAI_BRANCH "$TAG" | ||
|
||
# Network settings | ||
EXPOSE 80 | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ LABEL maintainer="Yoda team <[email protected]>" | |
# Application settings | ||
ARG TAG=development | ||
ENV YODA_MOCK_REPO "https://github.com/UtrechtUniversity/yoda-web-mock.git" | ||
ENV YODA_MOCK_BRANCH "development" | ||
ENV YODA_MOCK_BRANCH "$TAG" | ||
|
||
# Network settings | ||
EXPOSE 80 | ||
|