rsdeps

Cargo.lock visualizer (mirror)
Log | Files | Refs | README | LICENSE

commit 72b846c4e366f2279682657654a03228811d3df9
parent 60d33fb3aa06056d0378370fccb9edd5bb87ef8f
Author: Andy Khramtsov <>
Date:   Sat, 30 May 2026 13:46:57 +0300

chore: add recipes for containerization

Diffstat:
Mjustfile | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/justfile b/justfile @@ -28,3 +28,15 @@ start: # Alias to start run: start + +# Build container image +build version: + podman build -t rsdeps:{{ version }} . + +# Run built container for testing +crun version: + podman run --name rsdeps -p 8000:8000 --rm -d rsdeps:{{ version }} + +# Stop container +cstop: + podman stop rsdeps