Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed May 28, 2021
1 parent 9a88dc8 commit c42443a
Show file tree
Hide file tree
Showing 13 changed files with 221 additions and 500 deletions.
1 change: 1 addition & 0 deletions .gitignore
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/
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,11 @@ $ ls volumes/
postgres irods
```

TODO: describe configuration
Then copy the example configuration to `.env` and adjust it.

```bash
$ cp env.sodar.example env.sodar
$ $EDIT env.sodar
$ cp env.sodar-taskflow.example env.sodar-taskflow
$ $EDIT env.sodar-taskflow
$ cp env.example .env
$ $EDIT .env
```

### 3. Bring up the site
Expand Down
313 changes: 0 additions & 313 deletions config/irods/unattended_config.json.example

This file was deleted.

36 changes: 36 additions & 0 deletions docker-compose.override.yml.sssd
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:
Loading

0 comments on commit c42443a

Please sign in to comment.