28 lines
819 B
YAML
28 lines
819 B
YAML
---
|
|
podman_projects_dir: /opt/podman
|
|
|
|
# Unqualified search registries (for short image names like "redis:alpine")
|
|
podman_unqualified_search_registries:
|
|
- docker.io
|
|
- quay.io
|
|
- ghcr.io
|
|
|
|
# Podman bridge network configuration
|
|
# Define the network where containers will operate
|
|
# Leave empty to use Podman's default dynamic network assignment
|
|
# Example: "10.89.0.0/24" if you want to explicitly set it
|
|
podman_subnet: ""
|
|
# Podman bridge gateway IP (typically .1 of the bridge network)
|
|
# Used by services that need to bind to the bridge interface
|
|
|
|
# Each network should define: name, subnet, gateway
|
|
# podman_external_networks: []
|
|
# Example:
|
|
# podman_external_networks:
|
|
# - name: immich
|
|
# subnet: 172.20.0.0/16
|
|
# gateway: 172.20.0.1
|
|
# - name: nextcloud
|
|
# subnet: 172.21.0.0/16
|
|
# gateway: 172.21.0.1
|