Skip to main content

Installation

The service can be installed through the Portainer web interface. 

Learn about creating a new stack.

Docker Compose

Use the following code to install the service:

---
services:
    archivebox:
        image: archivebox/archivebox:latest
        ports:
            - 8820:8000
        network_mode: bridge
        restart: unless-stopped
        volumes:
            # Persistent Data
            - /srv/archivebox:/data
        environment:
            - ADMIN_USERNAME=
            - ADMIN_PASSWORD=
            - ALLOWED_HOSTS=
            - PUBLIC_INDEX=False
            - PUBLIC_SNAPSHOTS=False
            - PUBLIC_ADD_VIEW=False
            - PUID=1000
            - PGID=1000
            - MEDIA_MAX_SIZE=750m
            - TIMEOUT=60
            - CHECK_SSL_VALIDITY=True
            - SAVE_ARCHIVE_DOT_ORG=True