From 545ad30c7eca2021c507aae74c246f45169f6ae6 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Thu, 24 Aug 2023 20:33:04 +0400 Subject: [PATCH] Prepare Docker Compose for development --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2bd87add..a7fd19a4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,8 +12,8 @@ version: '2.4' # '3.9' or greater also works services: archivebox: - # build: . # for developers working on archivebox - image: ${DOCKER_IMAGE:-archivebox/archivebox:master} + build: . # for developers working on archivebox + # image: ${DOCKER_IMAGE:-archivebox/archivebox:master} command: server --quick-init 0.0.0.0:8000 ports: - 8000:8000 @@ -31,7 +31,7 @@ services: # - pihole volumes: - ./data:/data - # - ./archivebox:/app/archivebox # for developers working on archivebox + - ./archivebox:/app/archivebox # for developers working on archivebox ### Optional Addons: tweak these examples as needed for your specific use case