mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-03-13 16:03:25 +00:00
24 lines
586 B
YAML
24 lines
586 B
YAML
name: raspap
|
|
version: "3.8"
|
|
services:
|
|
raspap:
|
|
container_name: raspap
|
|
image: ghcr.io/raspap/raspap-docker:latest
|
|
#build: .
|
|
ports:
|
|
- "8081:8081"
|
|
privileged: true
|
|
network_mode: host
|
|
cgroup: host # uncomment when using an ARM device
|
|
environment:
|
|
- RASPAP_SSID=raspap-webgui
|
|
- RASPAP_SSID_PASS=ChangeMe
|
|
- RASPAP_COUNTRY=GB
|
|
- RASPAP_WEBGUI_USER=admin
|
|
- RASPAP_WEBGUI_PASS=secret
|
|
- RASPAP_WEBGUI_PORT=80
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
volumes:
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
|
restart: unless-stopped
|