From a10f717a309aaf07fc72151ec17d568f3f30cfca Mon Sep 17 00:00:00 2001 From: surtur Date: Sat, 24 Jul 2021 17:42:07 +0200 Subject: [PATCH] fix(ci): specify the project before the up command * compose ignores the project value if specified later * issue introduced in 9ec93b4 --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 92048e2..801780a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -111,7 +111,7 @@ steps: - name: s path: /var/run/docker.sock commands: - - docker-compose up -d --remove-orphans -p ${DRONE_REPO_NAME} + - docker-compose -p ${DRONE_REPO_NAME} up -d --remove-orphans when: branch: master status: success