-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
221 additions
and
500 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# The environment file. | ||
.env | ||
docker-compose.override.yml | ||
|
||
# The downloaded volumes | ||
/volumes/ | ||
|
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 was deleted.
Oops, something went wrong.
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,36 @@ | ||
services: | ||
sssd: | ||
image: ghcr.io/bihealth/sssd-docker:${SSSD_VERSION} | ||
restart: unless-stopped | ||
networks: | ||
- sodar | ||
volumes: | ||
- type: bind # SSSD config, copied to /etc/sssd | ||
source: ./config/sssd/sssd.conf | ||
target: /etc/sssd.in/sssd.conf | ||
read_only: true | ||
- type: volume | ||
source: sssd-sockets | ||
target: /var/lib/sss | ||
|
||
irods: | ||
image: ghcr.io/bihealth/irods-docker:${IRODS_VERSION}-sssd | ||
depends_on: | ||
- postgres | ||
- sssd | ||
volumes: | ||
- type: bind # configuration | ||
source: ./config/irods/etc | ||
target: /etc/irods | ||
- type: bind # log files | ||
source: ./volumes/irods/log | ||
target: /var/lib/irods/iRODS/server/log | ||
- type: bind # mass data files | ||
source: ./volumes/irods/vault | ||
target: /var/lib/irods/Vault | ||
- type: volume | ||
source: sssd-sockets | ||
target: /var/lib/sss | ||
|
||
volumes: | ||
sssd-sockets: |
Oops, something went wrong.