Skip to content

Commit

Permalink
cicd/testing docker postgres add --rm flag
Browse files Browse the repository at this point in the history
  • Loading branch information
clezag committed Jan 14, 2025
1 parent 17a5730 commit 2fefcde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: fsfe/reuse-action@v1

- name: Start postgis for testing
run: docker run -d --name postgres -e POSTGRES_DB=bdp -e POSTGRES_USER=bdp -e POSTGRES_PASSWORD=password -p "5555:5432" postgis/postgis:16-3.5-alpine
run: docker run --rm -d --name postgres -e POSTGRES_DB=bdp -e POSTGRES_USER=bdp -e POSTGRES_PASSWORD=password -p "5555:5432" postgis/postgis:16-3.5-alpine

- name: Test code
uses: noi-techpark/github-actions/maven-test@v2
Expand Down

0 comments on commit 2fefcde

Please sign in to comment.