We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb56976 commit 8133a78Copy full SHA for 8133a78
.github/workflows/main.yml
@@ -120,6 +120,11 @@ jobs:
120
apt install -y postgresql-14
121
if: startsWith(matrix.database, 'postgres')
122
123
+ - name: stop and remove all docker containers
124
+ run: |
125
+ docker stop $(docker ps -a -q)
126
+ docker rm $(docker ps -a -q)
127
+
128
# - name: start MongoDB docker
129
# run: |
130
# docker run -it --rm -d --name mongodb -e MONGO_ROOTUSER=${MONGO_ROOTUSER:-admin} -e MONGO_ROOTPASSWORD=${MONGO_ROOTPASSWORD:-admin} mongo:8.0.13
0 commit comments