External URL: https://research.risingflow.com
Internal URL: http://192.168.1.240:4000
GitHub: https://github.com/linuxserver/docker-zotero
Used to easily save research to a central repository. Integrates with a browser so you can right click and save to Zotero. Zotero also has a cloud repository which syncs with the local repository. Zotero is often used by academics to cite research.
Docker Compose:
services:
zotero:
image: lscr.io/linuxserver/zotero:latest
container_name: zotero
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Pacific/Auckland
volumes:
- ./config:/config
ports:
- 4000:3000
- 4001:3001
shm_size: "1gb"
restart: always