Files
sigilbox/docker-compose.yml

27 lines
662 B
YAML
Raw Normal View History

2026-05-15 09:12:28 -07:00
services:
2026-05-16 16:05:32 -07:00
archive-worker:
2026-05-15 09:12:28 -07:00
build: .
2026-05-16 16:05:32 -07:00
image: local-page-archiver:latest
2026-05-15 09:12:28 -07:00
environment:
2026-05-16 16:05:32 -07:00
ARCHIVE_PATH: /archives
ARCHIVE_WORKER_XVFB: "1"
2026-05-15 09:12:28 -07:00
volumes:
- ./archives:/archives
2026-05-16 16:05:32 -07:00
shm_size: 1gb
command: ["archive", "${URL:?Set URL=https://example.com}", "--json"]
2026-05-15 09:12:28 -07:00
2026-05-16 16:05:32 -07:00
archive-worker-vnc:
profiles: ["debug"]
2026-05-15 09:12:28 -07:00
build: .
2026-05-16 16:05:32 -07:00
image: local-page-archiver:latest
2026-05-15 09:12:28 -07:00
environment:
2026-05-16 16:05:32 -07:00
ARCHIVE_PATH: /archives
ARCHIVE_WORKER_XVFB: "1"
ARCHIVE_WORKER_VNC: "1"
2026-05-15 09:12:28 -07:00
volumes:
- ./archives:/archives
ports:
- "5900:5900"
2026-05-16 16:05:32 -07:00
shm_size: 1gb
command: ["archive", "${URL:?Set URL=https://example.com}", "--json"]