A drop-in, single-binary reimplementation of the caronc/apprise-api HTTP API in Go.
0

Configure Feed

Select the types of activity you want to include in your feed.

add podman and docker compose examples

Kohei Watanabe (Jun 8, 2026, 10:01 PM +0900) 448742ca 62488a1a

+19 -9
+19 -9
README.md
··· 4 4 5 5 ## Quick start 6 6 7 - ### Docker Hub 8 - 9 7 ```sh 8 + # Docker 10 9 docker run --rm -p 8000:8000 fogtype/apprize:latest 11 - ``` 12 10 13 - ### Go install 11 + # Podman 12 + podman run --rm -p 8000:8000 fogtype/apprize:latest 14 13 15 - ```sh 14 + # Go install 16 15 go install git.fogtype.com/nebel/apprize@latest 17 16 apprize --bind :8000 18 - ``` 19 17 20 - ### Build from source 21 - 22 - ```sh 18 + # Build from source 19 + git clone https://git.fogtype.com/nebel/apprize 20 + cd apprize 23 21 go build 24 22 ./apprize --bind :8000 23 + ``` 24 + 25 + ### Docker Compose 26 + 27 + ```yaml 28 + # compose.yml 29 + services: 30 + apprize: 31 + image: fogtype/apprize:latest 32 + restart: unless-stopped 33 + ports: 34 + - "8000:8000" 25 35 ``` 26 36 27 37 ## Configuration