Skip to main content

Archivebox

version: '3.3'

services:
    archivebox:
        image: archivebox/archivebox:latest
        command: server --quick-init 0.0.0.0:8102
        ports:
            - 8102:8102
        environment:
            - ALLOWED_HOSTS=*                   # add any config options you want as env vars
            - MEDIA_MAX_SIZE=750m
        volumes:
            - /srv/path/Files/Archivebox/data:/data
        restart: unless-stopped

To create an admin user : create a docker-compose.yml, cd to its folder, and run docker-compose run archivebox manage createsuperuser.
Erase newly and nonfunctional created container.