Bot Updating Documentation

pull/230/head
LinuxServer-CI 2024-07-05 09:42:49 +00:00
rodzic 400dada5fd
commit 510b349e39
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -56,8 +56,10 @@ services:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- APPRISE_ATTACH_SIZE=0 #optional
volumes:
- /path/to/apprise-api/config:/config
- /path/to/apprise-api/attachments:/attachments #optional
ports:
- 8000:8000
restart: unless-stopped
@ -71,8 +73,10 @@ docker run -d \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-e APPRISE_ATTACH_SIZE=0 `#optional` \
-p 8000:8000 \
-v /path/to/apprise-api/config:/config \
-v /path/to/apprise-api/attachments:/attachments `#optional` \
--restart unless-stopped \
lscr.io/linuxserver/apprise-api:latest
```
@ -94,12 +98,14 @@ Containers are configured using parameters passed at runtime (such as those abov
| `PUID=1000` | for UserID - see below for explanation |
| `PGID=1000` | for GroupID - see below for explanation |
| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
| `APPRISE_ATTACH_SIZE=0` | Max attachment size in Mb. `0` disables attachments. Must have `/attachments` mounted to set to a positive value. |
### Volume Mappings (`-v`)
| Volume | Function |
| :----: | --- |
| `/config` | Persistent config files |
| `/attachments` | Temporary storage for attachments when sent with notifications. |
#### Miscellaneous Options