Add or return 1
This commit is contained in:
parent
258e5c1002
commit
32bb219467
2 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
set -l container_name oxitraffic
|
set -l container_name oxitraffic
|
||||||
set -l container_volumes_dir ~/volumes/$container_name
|
set -l container_volumes_dir ~/volumes/$container_name
|
||||||
|
|
||||||
buildah build -t $container_name:latest ~/code/oxitraffic
|
buildah build -t $container_name:latest ~/code/oxitraffic; or return 1
|
||||||
|
|
||||||
set -l db_container_name oxitraffic-db
|
set -l db_container_name oxitraffic-db
|
||||||
set -l db_env_file $container_volumes_dir/.postgres.env
|
set -l db_env_file $container_volumes_dir/.postgres.env
|
||||||
|
@ -16,7 +16,7 @@ podman-default-create \
|
||||||
-e PGTZ=Europe/Berlin \
|
-e PGTZ=Europe/Berlin \
|
||||||
--env-file $db_env_file \
|
--env-file $db_env_file \
|
||||||
--label "io.containers.autoupdate=registry" \
|
--label "io.containers.autoupdate=registry" \
|
||||||
docker.io/library/postgres:16-alpine
|
docker.io/library/postgres:16-alpine; or return 1
|
||||||
|
|
||||||
podman-default-create \
|
podman-default-create \
|
||||||
$container_name \
|
$container_name \
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
set -l container_name oxitraffic-corrode-dev
|
set -l container_name oxitraffic-corrode-dev
|
||||||
set -l container_volumes_dir ~/volumes/$container_name
|
set -l container_volumes_dir ~/volumes/$container_name
|
||||||
|
|
||||||
buildah build -t $container_name:latest ~/code/oxitraffic
|
buildah build -t $container_name:latest ~/code/oxitraffic; or return 1
|
||||||
|
|
||||||
set -l db_container_name oxitraffic-corrode-dev-db
|
set -l db_container_name oxitraffic-corrode-dev-db
|
||||||
set -l db_env_file $container_volumes_dir/.postgres.env
|
set -l db_env_file $container_volumes_dir/.postgres.env
|
||||||
|
@ -16,7 +16,7 @@ podman-default-create \
|
||||||
-e PGTZ=Europe/Berlin \
|
-e PGTZ=Europe/Berlin \
|
||||||
--env-file $db_env_file \
|
--env-file $db_env_file \
|
||||||
--label "io.containers.autoupdate=registry" \
|
--label "io.containers.autoupdate=registry" \
|
||||||
docker.io/library/postgres:16-alpine
|
docker.io/library/postgres:16-alpine; or return 1
|
||||||
|
|
||||||
podman-default-create \
|
podman-default-create \
|
||||||
$container_name \
|
$container_name \
|
||||||
|
|
Loading…
Reference in a new issue