From e671ddd22bf8cb42a979637d1ce4863079be90dd Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 28 Jul 2020 08:14:50 -0400 Subject: [PATCH] increase ci step delays --- .github/workflows/test.yml | 8 +++++--- docker-compose.yml | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) 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