From 6425917e1cf9ce0f4f6eddb9d7ee9f25674b2d78 Mon Sep 17 00:00:00 2001 From: surtur Date: Sat, 24 Jul 2021 17:44:33 +0200 Subject: [PATCH] fix(ci): specify the project before the up command * compose ignores the project value if specified later * issue introduced in ebd51c2 --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 6335b32..de007e9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -216,7 +216,7 @@ steps: - name: s path: /var/run/docker.sock commands: - - docker-compose up -d --remove-orphans --scale homepage=4 -p ${DRONE_REPO_NAME} + - docker-compose -p ${DRONE_REPO_NAME} up -d --remove-orphans --scale homepage=4 when: branch: master status: success