initial commit

This commit is contained in:
Yung Wood
2024-08-18 14:41:10 +00:00
parent 68ba3cfb38
commit cb79e55c9e
22 changed files with 1238 additions and 0 deletions

26
docker-compose.yaml Normal file
View File

@@ -0,0 +1,26 @@
---
services:
ical-filter-proxy:
image: yungwood/ical-filter-proxy:latest
container_name: ical-filter-proxy
# # specify additional command arguments
# command: --debug
ports:
- "8080:8080"
volumes:
- ./config.yaml:/app/config.yaml
restart: always
## the below example might be used with traefik docker provider
## https://doc.traefik.io/traefik/providers/docker/
# labels:
# traefik.enable: true
# traefik.http.routers.ical.rule: "Host(`ical.mydomain.com`)"
# traefik.http.routers.ical.entrypoints: web
# traefik.http.services.ical.loadbalancer.server.port: 8080
# networks:
# - traefik
# networks:
# traefik:
# name: traefik
# external: true