-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (29 loc) · 1.05 KB
/
Copy pathdocker-compose.yml
File metadata and controls
30 lines (29 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Production compose file for podfather.
# Start with: podman-compose up
# Browse to http://localhost:8080
services:
podfather:
image: ghcr.io/jo-m/podfather:latest
container_name: podfather
ports:
- "8080:8080"
user: "${UID}:${GID}"
volumes:
- ${XDG_RUNTIME_DIR}/podman/podman.sock:/var/run/podman.sock:ro
labels:
ch.jo-m.go.podfather.app.name: "podfather"
ch.jo-m.go.podfather.app.icon: "🫛"
ch.jo-m.go.podfather.app.category: "Infrastructure"
ch.jo-m.go.podfather.app.sort-index: "0"
ch.jo-m.go.podfather.app.description: "Podman container dashboard"
ch.jo-m.go.podfather.app.url: "http://localhost:8080"
environment:
PODMAN_SOCKET: /var/run/podman.sock
LISTEN_ADDR: ":8080"
# ENABLE_AUTOUPDATE_BUTTON: "true"
# BASE_PATH: "/podfather"
# External apps (shown on dashboard without a container):
# PODFATHER_APP_ROUTER_NAME: "Router"
# PODFATHER_APP_ROUTER_ICON: "📡"
# PODFATHER_APP_ROUTER_URL: "http://192.168.1.1"
restart: unless-stopped