-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker engine does not support extends in compose files... moby/moby#31101
- Loading branch information
1 parent
588da5d
commit 10517a0
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
eval $(ssh-agent) | ||
ssh-add "$HOME/.ssh/docker" | ||
echo "crossroadsajax.church $SSH_KNOWN_HOST" >> ~/.ssh/known_hosts | ||
docker --host "ssh://[email protected]" stack deploy -c prod.yml --with-registry-auth prod | ||
docker --host "ssh://[email protected]" stack deploy --compose-file <(docker-compose -f prod.yml config) --with-registry-auth prod | ||
shell: bash | ||
env: | ||
SSH_PRIV_KEY: ${{ secrets.DOCKER_SSH_PRIVATE_KEY }} | ||
|
@@ -57,7 +57,7 @@ jobs: | |
eval $(ssh-agent) | ||
ssh-add "$HOME/.ssh/docker" | ||
echo "crossroadsajax.church $SSH_KNOWN_HOST" >> ~/.ssh/known_hosts | ||
docker --host "ssh://[email protected]" stack deploy -c staging.yml --with-registry-auth staging | ||
docker --host "ssh://[email protected]" stack deploy --compose-file <(docker-compose -f staging.yml config) --with-registry-auth staging | ||
shell: bash | ||
env: | ||
SSH_PRIV_KEY: ${{ secrets.DOCKER_SSH_PRIVATE_KEY }} | ||
|