12 lines
259 B
Fish
Executable file
12 lines
259 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
set -l container_name dev-tools
|
|
|
|
cd ~/code/dev_tools
|
|
mdbook build
|
|
buildah build --layers -t $container_name:latest .; or return 1
|
|
|
|
podman-default-create \
|
|
$container_name \
|
|
--network traefik \
|
|
localhost/$container_name:latest
|