Skip to content

Commit

Permalink
compose: ensure we use PostgreSQL 15, like in production
Browse files Browse the repository at this point in the history
`docker.io/library/postgres:alpine` is actually pointing on PostgreSQL 16 which
is not the version we run in production.

By pinning on `15-alpine` we reduce the delta with our target environment and
reduce the risk of introducing some breaking changes in the future.
  • Loading branch information
goneri committed Feb 9, 2024
1 parent de5f1b9 commit ac3c08e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/docker-compose/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ services:
- dbnet
db:
platform: linux/amd64
image: docker.io/library/postgres:alpine
image: docker.io/library/postgres:15-alpine
environment:
- POSTGRES_PASSWORD=wisdom
- POSTGRES_DB=wisdom
Expand Down

1 comment on commit ac3c08e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ClamAV Virus Definition DB Files:
----
total 228116
-rw-r--r--  1 root root 170479789 Feb  9 06:07 main.cvd
-rw-r--r--  1 root root        69 Feb  9 06:07 freshclam.dat
-rw-r--r--  1 root root  62787714 Feb  9 06:07 daily.cvd
-rw-r--r--  1 root root    291965 Feb  9 06:07 bytecode.cvd
drwxr-xr-x 16 root root      4096 Feb  9 17:16 ..
drwxr-xr-x  2 root root      4096 Feb  9 17:16 .
----
File: /var/lib/clamav/bytecode.cvd
Build time: 22 Feb 2023 16:33 -0500
Version: 334
Signatures: 91
Functionality level: 90
Builder: anvilleg
MD5: 0464067a252b1e937012ad34e811065f
Digital signature: urVBCbhJcz8v6i1E6HedDwa8TxBHnJknqg7SE+6JWBtovATpw8MWwS+kvGAi//x5u0LIFwhPvUsgEBBeFiZE0QTTWazOhJ/LfKJK+nODqha6cTvaQdKl2rSbEOv6grv7UONV8eKi383Wv07wfSNYp+lPNpt0QmejKb1TMHAYTA
Verification OK.
----
File: /var/lib/clamav/daily.cvd
Build time: 08 Feb 2024 04:37 -0500
Version: 27179
Signatures: 2052546
Functionality level: 90
Builder: raynman
MD5: cbb23cef7057f140c9d39881269d45d4
Digital signature: losI6iNnjoGlgeB/DN3OLhFJ0edeoD+h6rjAqgVCfrfz//GxEn77PUqrbWeZmS1yI52JmOPm3Mk4A3peu6P5kZUHKMSUFjiUdJy6Qkc2GLGXGIKFsMC5WA7SBlr6PPJuiTTRTaXafFEdJ08DcRW3glATrW4ZRItqjr7KDJJ8qXb
Verification OK.
----
File: /var/lib/clamav/main.cvd
Build time: 16 Sep 2021 08:32 -0400
Version: 62
Signatures: 6647427
Functionality level: 90
Builder: sigmgr
MD5: 137eccce31aacb21b5a98bb8c21cefd6
Digital signature: twaJBls8V5q64R7QY10AatEtPNuPWoVoxTaNO1jpBg7s5jIMMXpitgG1000YLp6rb0TWkEKjRqxneGTxuxWaWm7XBjsgwX2BRWh/y4fhs7uyImdKRLzQ5y8e2EkSChegF/i8clqfn+1qetq9j4gbktJ3JZpOXPoHlyr2Dv9S/Bg
Verification OK.
----
Scanning Results:
ClamAV 1.0.4/27179/Thu Feb  8 09:37:23 2024
LibClamAV Warning: Max file-size was set to 4194304000 bytes. Unfortunately, scanning files greater than 2147483647 bytes (2 GiB - 1) is not supported.

----------- SCAN SUMMARY -----------
Known viruses: 8684414
Engine version: 1.0.4
Scanned directories: 30982
Scanned files: 190210
Infected files: 0
Data scanned: 6498.17 MB
Data read: 3414.77 MB (ratio 1.90:1)
Time: 2082.232 sec (34 m 42 s)
Start Date: 2024:02:09 17:18:12
End Date:   2024:02:09 17:52:54

Please sign in to comment.