16 lines
456 B
YAML
16 lines
456 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
gcaldav:
|
|
image: ghcr.io/tomsquest/gcal-dav:latest
|
|
container_name: gcal-dav
|
|
ports:
|
|
- "5232:5232"
|
|
volumes:
|
|
- /volume1/Docker/gcaldav/config:/app/config
|
|
- /volume1/Docker/gcaldav/data:/app/data
|
|
environment:
|
|
- GCD_CLIENT_ID=y882156610771-aioeubp72oecurc1lbk9rcij1un8ui40.apps.googleusercontent.com
|
|
- GCD_CLIENT_SECRET=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
|
|
restart: unless-stopped
|