Repo for Podman / Compose / Quadlets
Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux system. Unlike Docker, Podman doesn't require a daemon to be running and can run containers rootless, making it more secure and easier to integrate with systemd.
Compose is a tool for defining and running multi-container applications. With Compose, you use a YAML file to configure your application's services, networks, and volumes. Then, with a single command, you can create and start all the services from your configuration.
Podman supports the Compose specification through the podman compose command.
- For general installation instructions, see the podman-compose installation guide
- For Podman Desktop users, follow these instructions to set up compose
This repository contains several subdirectories, each with its own compose.yml file and configuration. To use any of the services:
-
Navigate to the desired subdirectory:
cd <subdirectory-name>
-
Start the services with Podman Compose:
podman compose up
-
To run in detached mode (background):
podman compose up -d
-
To stop the services:
podman compose down
- cloudflared-tunnel: Cloudflare Tunnel configuration
- thelounge: The Lounge web IRC client
This repository is licensed under the GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later).