Add internet-login
This commit is contained in:
parent
49356a6d5f
commit
7a6c812433
1 changed files with 11 additions and 0 deletions
11
containers/internet-login.fish
Executable file
11
containers/internet-login.fish
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env fish
|
||||
|
||||
set -l container_name internet-login
|
||||
set -l container_volumes_dir ~/volumes/$container_name
|
||||
|
||||
buildah build -t $container_name:latest ~/code/internet-login; or return 1
|
||||
|
||||
podman-default-create \
|
||||
$container_name \
|
||||
-v $container_volumes_dir/config.toml:/volumes/config.toml:Z,ro \
|
||||
localhost/$container_name:latest
|
Loading…
Reference in a new issue