You must login to view /gokrazy/podman/raw/branch/main/Makefile.
The GitHub option should be usable for most people, it only links via username.

Files
podman/README.md
Michael Stapelberg 3fe314476d README: update for /var on /perm
use:

% gok get github.com/gokrazy/gokrazy

to pick up creation of /perm/var and /perm/var/run in commit
ae40eb3636

and:

% go install github.com/gokrazy/tools/cmd/gok@main

to pick up creation of /var as a symlink to /perm/var in commit
04de7ab994
2024-05-22 19:18:24 +02:00

31 lines
792 B
Markdown

## podman for gokrazy
This package contains https://github.com/mgoltzsche/podman-static, a static
build of podman.
### Usage
Please see [gokrazy → Available packages → Docker
containers](https://gokrazy.org/packages/docker-containers/) for instructions on
how to use this repository.
The sections below assume you are logged into to your gokrazy device using
[breakglass](https://github.com/gokrazy/breakglass).
#### Run a container
```
podman run --rm -ti docker.io/library/debian:sid
```
#### Optional: tmpfs
By default, containers are stored on disk (`/var` is a symlink to `/perm/var` on
the permanent data partition). If you only want to try something out without
keeping the containers around across reboots, it is faster to work in RAM:
```
mount -t tmpfs tmpfs /var
```