From 524756d5fe5db6a08ca36b2b87961426b2b09bd9 Mon Sep 17 00:00:00 2001 From: ILoveYaToo Date: Mon, 13 Apr 2020 01:11:28 -0400 Subject: [PATCH] fix paths --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 71a8817..2ca07ba 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,9 +30,12 @@ build-docker-ubuntu: test-docker-ubuntu: stage: tests script: - - docker load -i ubuntu/postal-ubuntu-container.tar + - cd ubuntu + - docker load -i postal-ubuntu-container.tar - docker-compose up -d - docker-compose run postal initialize after_script: - - docker system prune -af + - docker container prune -f + - docker image prune -f + - docker system prune -af --volumes