init
Some checks failed
Build Backend / Build image (push) Failing after 8s

This commit is contained in:
2026-03-12 16:24:25 +07:00
commit c88afc7871
13 changed files with 236 additions and 0 deletions

29
docker-compose.yml Normal file
View File

@@ -0,0 +1,29 @@
version: '3.9'
services:
clamav-mirror:
image: hub.realmanual.ru/pub/clamav-mirror:latest
container_name: clamav-mirror
restart: always
labels:
- "traefik.enable=true"
- "traefik.http.routers.clamav-mirror.entrypoints=https"
- "traefik.http.routers.clamav-mirror.rule=Host(`${HOST}`)"
- "traefik.http.routers.clamav-mirror.tls=true"
- "traefik.http.routers.clamav-mirror.tls.certresolver=letsEncrypt"
- "traefik.http.services.clamav-mirror-service.loadbalancer.server.port=8080"
- "traefik.docker.network=webproxy"
environment:
- CRONTAB_TIME
expose:
- 8080
volumes:
- ./data/cvdupdate:/mnt/cvdupdate
networks:
- clamav-net
- webproxy
networks:
clamav-net:
name: clamav-net
webproxy:
external: true