From 3e6bcb3b39f4d6d95d8036f865050e42d9ef95f1 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 28 Feb 2019 13:59:52 -0500 Subject: [PATCH] add docs links and usage to docker-compose.yml --- docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 0a6fe715..631ebcf7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,3 +1,13 @@ +# This docker-compose config for ArchiveBox runs the following containers: +# - ArchiveBox (it creates the initial archive, then sleeps forever to allow commands to be run with exec to add links) +# - nginx webserver running on https://127.0.0.1:8098 +# Usage: +# docker-compose up -d +# echo "https://example.com" | docker-compose exec -T archivebox /bin/archive +# docker-compose exec archivebox /bin/archive https://example.com/some/feed.rss +# Documentation: +# https://github.com/pirate/ArchiveBox/wiki/Docker#docker-compose + version: '3' services: @@ -5,6 +15,7 @@ services: build: . stdin_open: true tty: true + # env_file: path/to/your/ArchiveBox.conf environment: - USE_COLOR=False - SHOW_PROGRESS=False