Fix docker db init / reset for Windows (#1981) (#2023)

* removed checking if docker is running with /dev/null
This commit is contained in:
Ruslan
2023-10-15 22:36:18 +07:00
committed by GitHub
parent ba3094b448
commit e69a355cbb

View File

@ -6,7 +6,6 @@ build:
@docker compose build @docker compose build
provision-postgres: provision-postgres:
@docker version > /dev/null 2>&1 || (echo "Docker is not running" && exit 1)
@docker stop twenty_postgres || true @docker stop twenty_postgres || true
@docker rm twenty_postgres || true @docker rm twenty_postgres || true
@docker volume rm twenty_db_data || true @docker volume rm twenty_db_data || true