12 lines
335 B
Fish
Executable file
12 lines
335 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
set -l container_name oxiform-oxiform
|
|
set -l container_volumes_dir ~/volumes/$container_name
|
|
|
|
buildah build --layers -t $container_name:latest ~/code/oxiform
|
|
|
|
podman-default-create \
|
|
$container_name \
|
|
--network traefik \
|
|
-v $container_volumes_dir:/volumes/data:Z \
|
|
localhost/$container_name:latest
|