fix(docker-compose): fix autoloading of docker-compose file

This commit is contained in:
kjeld Schouten-Lebbing 2022-02-24 23:51:50 +01:00
parent 24c0b1c5b0
commit 676a218450
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ name: docker-compose
sources:
- https://github.com/Jackett/Jackett
type: application
version: 0.0.5
version: 0.0.6
annotations:
truecharts.org/catagories: |
- docker

View File

@ -63,7 +63,7 @@ lifecycle:
sleep 5;
counter=$((counter+1));
done
docker-compose up -d -f "${COMPOSE_FILE}" && echo "Loading COMPOSE_FILE at location ${COMPOSE_FILE}" >> /proc/1/fd/1;
docker-compose -f "${COMPOSE_FILE}" up -d && echo "Loading COMPOSE_FILE at location ${COMPOSE_FILE}" >> /proc/1/fd/1;
else
echo "COMPOSE_FILE not set, not auto-loading compose-file" >> /proc/1/fd/1;
fi