Files
homelab-docker-config/zotero/docker-compose.yml
2025-08-11 15:47:58 +02:00

18 lines
447 B
YAML

services:
zotero:
image: lscr.io/linuxserver/zotero:7.0.22
container_name: zotero
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
volumes:
- ${ZOTERO_CONFIG_DIR}/config:/config
ports:
- 3004:3000
#- 3001:3001 We're only using this behind nginx, so no need for the https port
shm_size: "1gb"
restart: unless-stopped