Skip to content

Commit

Permalink
Switch docker-compose to docker compose
Browse files Browse the repository at this point in the history
Fixes #872
  • Loading branch information
iwahbe committed Apr 2, 2024
1 parent eecfc5f commit 59654af
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions native-provider-ci/src/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ export function InstallPulumiCli(version?: string): Step {
export function RunDockerComposeStep(required?: boolean): Step {
if (required) {
return {
name: "Run docker-compose",
run: "docker-compose -f testing/docker-compose.yml up --build -d",
name: "Run docker compose",
run: "docker compose -f testing/docker-compose.yml up --build -d",
};
}
return {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ jobs:
pip3 install virtualenv==20.0.23
pip3 install pipenv
#{{- if .Config.docker }}#
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
#{{- end }}#
#{{- if .Config.aws }}#
- name: Configure AWS Credentials
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ jobs:
pip3 install virtualenv==20.0.23
pip3 install pipenv
#{{- if .Config.docker }}#
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
#{{- end }}#
#{{- if .Config.aws }}#
- name: Configure AWS Credentials
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ jobs:
pip3 install virtualenv==20.0.23
pip3 install pipenv
#{{- if .Config.docker }}#
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
#{{- end }}#
#{{- if .Config.aws }}#
- name: Configure AWS Credentials
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ jobs:
pip3 install virtualenv==20.0.23
pip3 install pipenv
#{{- if .Config.docker }}#
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
#{{- end }}#
#{{- if .Config.aws }}#
- name: Configure AWS Credentials
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ jobs:
pip3 install virtualenv==20.0.23
pip3 install pipenv
#{{- if .Config.docker }}#
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
#{{- end }}#
#{{- if .Config.aws }}#
- name: Configure AWS Credentials
Expand Down

0 comments on commit 59654af

Please sign in to comment.