Skip to content

Commit 377e7fe

Browse files
Fix the deployment script for compose-file location. Closes #1603 (#1604)
1 parent c802673 commit 377e7fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.deployment/deploy-deepforge

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ export DEEPFORGE_DEPLOYMENT_DIR
77
SERVER_NAME=server
88

99
# Merging the custom override yml file
10-
yaml-merge docker-compose.yml "$DEEPFORGE_DEPLOYMENT_DIR"/docker-compose-overrides.yml > custom-docker-compose.yml
10+
yaml-merge docker/docker-compose.yml "$DEEPFORGE_DEPLOYMENT_DIR"/docker-compose-overrides.yml > custom-docker-compose.yml
1111

1212
# Pulling the latest docker image, stopping the server, removing and restarting it
1313
docker-compose --file custom-docker-compose.yml pull $SERVER_NAME
14-
docker-compose stop $SERVER_NAME
15-
docker-compose rm -f $SERVER_NAME
14+
docker-compose --file custom-docker-compose.yml stop $SERVER_NAME
15+
docker-compose --file custom-docker-compose.yml rm -f $SERVER_NAME
1616
docker-compose --file custom-docker-compose.yml up -d $SERVER_NAME
1717

1818
docker image prune -f

0 commit comments

Comments
 (0)