feat(back-end): add ClamAV service remember to add env and compose.deploy on server

This commit is contained in:
2026-02-19 15:59:33 +01:00
parent 2189e58cc6
commit 0d23521cac
13 changed files with 149 additions and 4 deletions

View File

@@ -20,8 +20,11 @@ services:
- MARKUP_PERCENT=20
- TEMP_DIR=/app/temp
- PROFILES_DIR=/app/profiles
- CLAMAV_HOST=clamav
- CLAMAV_PORT=3310
depends_on:
- db
- clamav
restart: unless-stopped
frontend:
@@ -49,5 +52,13 @@ services:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
clamav:
platform: linux/amd64
image: clamav/clamav:latest
container_name: print-calculator-clamav
ports:
- "3310:3310"
restart: unless-stopped
volumes:
postgres_data: