23 lines
612 B
YAML
23 lines
612 B
YAML
services:
|
|
archivebox:
|
|
image: archivebox/archivebox
|
|
command: server --quick-init 0.0.0.0:8000
|
|
environment:
|
|
- ALLOWED_HOSTS=*
|
|
- MEDIA_MAX_SIZE=750m
|
|
volumes:
|
|
- ./data:/data
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.docker.network=proxy"
|
|
- "traefik.http.routers.archive.entrypoints=websecure"
|
|
- "traefik.http.routers.archive.rule=Host(`archive.example.com`)"
|
|
- "traefik.http.routers.archive.service=archive"
|
|
- "traefik.http.services.archive.loadbalancer.server.port=8000"
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|