add container service management commands to readme
This commit is contained in:
parent
2d0f6dd8eb
commit
7ab52b0d49
1 changed files with 12 additions and 8 deletions
20
README.md
20
README.md
|
|
@ -83,16 +83,20 @@ nixos-rebuild build --flake .#<host>
|
||||||
## Service Management (NixOS)
|
## Service Management (NixOS)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Check service status
|
# Container services
|
||||||
|
sudo systemctl start/stop/restart podman-<container>.service
|
||||||
|
sudo systemctl status podman-<container>.service
|
||||||
|
sudo journalctl -u podman-<container>.service -f # Follow logs
|
||||||
|
sudo journalctl -u podman-<container>.service -n 100 # Last 100 lines
|
||||||
|
|
||||||
|
# Podman commands
|
||||||
|
sudo podman ps -a
|
||||||
|
sudo podman logs -f <container>
|
||||||
|
sudo podman exec -it <container> bash
|
||||||
|
|
||||||
|
# Other services
|
||||||
systemctl status <service>
|
systemctl status <service>
|
||||||
journalctl -u <service> -f
|
journalctl -u <service> -f
|
||||||
|
|
||||||
# Container management
|
|
||||||
podman ps # Actually podman
|
|
||||||
podman logs <container>
|
|
||||||
podman exec -it <container> bash
|
|
||||||
|
|
||||||
# Systemd timers
|
|
||||||
systemctl list-timers
|
systemctl list-timers
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue