- Follows Rust Package Layout
Make sure rust is the latest version
rustup update
cargo build --example server
cargo run --example server
You'll need to first update your registries to include docker.io if you haven't done that
Add to your /etc/containers/registries.conf
file:
[registries.search]
registries = ['docker.io']
podman build -f Dockerfile -t authress-local
podman run -it -p 8888:8888 localhost/authress-local:latest
podman container ls
podman container kill NAME
podman container prune
podman image prune
# copy file out
podman cp <container_id>:/path/to/useful/file /local-path
# Jump into container
podman exec -it <container_id> /bin/bash