Add options to enforce recreate containers even if already exists

This commit is contained in:
Laurent Indermuehle 2023-03-03 14:23:08 +01:00
commit 0ef8552973
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
2 changed files with 5 additions and 4 deletions

View file

@ -21,6 +21,7 @@ test-integration:
podman network create podman || true
podman run \
--detach \
--replace \
--name primary \
--env MARIADB_ROOT_PASSWORD=msandbox \
--env MYSQL_ROOT_PASSWORD=msandbox \
@ -31,6 +32,7 @@ test-integration:
mysqld
podman run \
--detach \
--replace \
--name replica1 \
--env MARIADB_ROOT_PASSWORD=msandbox \
--env MYSQL_ROOT_PASSWORD=msandbox \
@ -41,6 +43,7 @@ test-integration:
mysqld
podman run \
--detach \
--replace \
--name replica2 \
--env MARIADB_ROOT_PASSWORD=msandbox \
--env MYSQL_ROOT_PASSWORD=msandbox \