Skip to content

Commit

Permalink
reverting docker compose workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrichlake committed Sep 29, 2023
1 parent f7425c1 commit 07fdf56
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,6 @@ jobs:
- name: ShadowJar
run: ./gradlew shadowJar

- name: Install Latest Version of Docker Compose v2
run: |
COMPOSE_VERSION=$(curl --silent https://api.github.com/repos/docker/compose/releases/latest | jq '.tag_name' -r)
INSTALL_LOCATION=/usr/libexec/docker/cli-plugins/docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-linux-x86_64" -o ${INSTALL_LOCATION}
sudo chmod +x ${INSTALL_LOCATION}
docker compose version
- name: Run Container
run: docker compose up --build -d

Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/dast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,6 @@ jobs:
- name: ShadowJar
run: ./gradlew clean shadowJar

- name: Install Latest Version of Docker Compose v2
run: |
COMPOSE_VERSION=$(curl --silent https://api.github.com/repos/docker/compose/releases/latest | jq '.tag_name' -r)
INSTALL_LOCATION=/usr/libexec/docker/cli-plugins/docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-linux-x86_64" -o ${INSTALL_LOCATION}
sudo chmod +x ${INSTALL_LOCATION}
docker compose version
- name: Run App in Container
run: docker compose up --build -d

Expand Down

0 comments on commit 07fdf56

Please sign in to comment.