11 lines
328 B
Fish
Executable file
11 lines
328 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
set -l container_name how-2-julia
|
|
|
|
podman-default-create \
|
|
$container_name \
|
|
--network traefik \
|
|
-v ~/sync/volumes/nginx.conf:/etc/nginx/nginx.conf:z,ro \
|
|
-v ~/code/how_2_julia:/usr/share/nginx/html:Z,ro \
|
|
--label "io.containers.autoupdate=registry" \
|
|
docker.io/library/nginx:latest
|