diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5aeb4c0c..c8836432 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -131,13 +131,15 @@ jobs: - name: Curl index with PUBLIC_INDEX=False run: | docker-compose run archivebox config --set PUBLIC_INDEX=False - docker-compose restart || true - sleep 6 + docker-compose restart || + docker-compose up -d || true + sleep 10 curl --silent --location 'http://127.0.0.1:8000' | grep 'ArchiveBox Admin' - name: Curl index with PUBLIC_INDEX=True run: | docker-compose run archivebox config --set PUBLIC_INDEX=True docker-compose restart || true - sleep 6 + docker-compose up -d || true + sleep 10 curl --silent --location 'http://127.0.0.1:8000' | grep 'Add Links' diff --git a/docker-compose.yml b/docker-compose.yml index 1be33830..a6f72108 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,8 +12,8 @@ version: '3.7' services: archivebox: - build: . - image: archivebox:latest + # build: . + image: nikisweeting/archivebox:latest command: server 0.0.0.0:8000 stdin_open: true tty: true