Skip to content

Commit

Permalink
update irods 4.3 logging (#34), suppress irods postgres warnings (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Sep 19, 2024
1 parent 2597f1d commit 8b806c4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# SODAR Docker Compose Changelog

## Unreleased

- Suppress iRODS postgres transaction warnings (#17)
- Upgrade to Postgres v16 (#34)

## v0.15.1-1 (2024-09-12)

- Release for SODAR v0.15.1
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ services:
POSTGRES_USER: ${POSTGRES_USERNAME}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: sodar
command: ["postgres", "-c", "log_min_messages=error"]
ports:
- "5432:5432"
networks:
Expand Down Expand Up @@ -107,7 +108,7 @@ services:
target: /etc/traefik/tls
- type: bind # Log files
source: ./volumes/irods/log
target: /var/lib/irods/log
target: /var/log/irods
- type: bind # File storage
source: ./volumes/irods/vault
target: /data/Vault
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.override.yml.irods
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
target: /etc/traefik/tls
- type: bind # Log files
source: ./volumes/irods/log
target: /var/lib/irods/log
target: /var/log/irods
- type: bind # File storage
source: ./volumes/irods/vault
target: /data/Vault
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ services:
POSTGRES_USER: ${POSTGRES_USERNAME}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: sodar
command: ["postgres", "-c", "log_min_messages=error"]
networks:
- sodar
restart: unless-stopped
Expand Down

0 comments on commit 8b806c4

Please sign in to comment.