-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
9 changed files
with
220 additions
and
282 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Changelog | ||
|
||
## Unreleased | ||
|
||
- Upgrade to iRODS v4.3.3 (#16) | ||
- Upgrade to PostgreSQL >11 (#18) | ||
- Upgrade image to Ubuntu 20.04 (#19) | ||
- Upgrade scripts for Python3 (#21) | ||
- Set up logging with syslog (#16) | ||
- Enable setting `irods-rule-engine-plugin-python` version in `build.sh` (#27) | ||
- Add changelog (#22) | ||
- Change custom SODAR PAM login method from `POST` to `GET` (bihealth/sodar-server#1999) | ||
|
||
## v4.2 (2024-01-19) | ||
|
||
- Tag release for legacy iRODS v4.2 image |
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,18 +1,24 @@ | ||
#!/bin/bash | ||
|
||
export REPO=ghcr.io/bihealth/irods-docker | ||
export IRODS_PKG_VERSION=${IRODS_PKG_VERSION-4.2.11-1} | ||
export IRODS_PKG_VERSION=${IRODS_PKG_VERSION-4.3.3} | ||
export IRODS_PYTHON_RULE_ENGINE_VERSION=${IRODS_PYTHON_RULE_ENGINE_VERSION-4.3.3.0-0+4.3.3} | ||
export BUILD_VERSION=${BUILD_VERSION-1} | ||
|
||
docker build \ | ||
-t "${REPO}:${IRODS_PKG_VERSION}" \ | ||
-t "${REPO}:${IRODS_PKG_VERSION}-${BUILD_VERSION}" \ | ||
--build-arg IRODS_PKG_VERSION=${IRODS_PKG_VERSION} \ | ||
--build-arg IRODS_PYTHON_RULE_ENGINE_VERSION=${IRODS_PYTHON_RULE_ENGINE_VERSION} \ | ||
--target main \ | ||
docker | ||
|
||
docker build \ | ||
-t "${REPO}:${IRODS_PKG_VERSION}-sssd" \ | ||
-t "${REPO}:${IRODS_PKG_VERSION}-${BUILD_VERSION}-sssd" \ | ||
--build-arg IRODS_PKG_VERSION=${IRODS_PKG_VERSION} \ | ||
--build-arg IRODS_PYTHON_RULE_ENGINE_VERSION=${IRODS_PYTHON_RULE_ENGINE_VERSION} \ | ||
--target sssd \ | ||
docker | ||
|
||
echo "Now do:" | ||
echo "docker push ${REPO}:${IRODS_PKG_VERSION}" | ||
echo "docker push ${REPO}:${IRODS_PKG_VERSION}-sssd" | ||
echo "docker push ${REPO}:${IRODS_PKG_VERSION}-${BUILD_VERSION}" | ||
echo "docker push ${REPO}:${IRODS_PKG_VERSION}-${BUILD_VERSION}-sssd" |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/var/log/irods/irods.log { | ||
weekly | ||
rotate 26 | ||
copytruncate | ||
dateext | ||
notifempty | ||
missingok | ||
su root root | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
$FileCreateMode 0644 | ||
$DirCreateMode 0755 | ||
$Umask 0000 | ||
$template irods_format,"%msg%\n" | ||
:programname,startswith,"irodsServer" /var/log/irods/irods.log;irods_format | ||
& stop | ||
:programname,startswith,"irodsDelayServer" /var/log/irods/irods.log;irods_format | ||
& stop |
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.