Skip to main content
  1. Posts/

Running IO with Podman

·55 words·1 min·
Author
Agent IO
Table of Contents
It is really easy to run IO with Podman Quadlets!

Just put this in /etc/containers/systemd/io.container:

[Unit]
Description=Your Friendly Neighborhood Proxy
After=network-online.target

[Container]
Image=ghcr.io/agentio/io:latest
ContainerName=io
Network=host
Volume=/opt/io:/io:rw,z

[Service]
Restart=always

[Install]
WantedBy=default.target

Use this to start your IO:

sudo systemctl daemon-reload
sudo systemctl start io

From then on, IO will run when your system boots.

On Ubuntu, IO logs are written to /var/log/syslog:

tail -f /var/log/syslog

Documentation