mirror of
https://github.com/caronc/apprise-api.git
synced 2024-12-12 18:00:51 +01:00
18 lines
472 B
YAML
18 lines
472 B
YAML
version: '3'
|
|
|
|
services:
|
|
apprise:
|
|
build: .
|
|
container_name: apprise
|
|
ports:
|
|
- 8000:8000
|
|
user: "www-data:www-data"
|
|
volumes:
|
|
- ./apprise_api:/opt/apprise/webapp:ro
|
|
# if uncommenting the below, you will need to type the following
|
|
# otherwise the django instance won't have permissions to write
|
|
# to the directory correctly:
|
|
# $> chown -R 33:33 ./config
|
|
# $> chmod -R 775 ./config
|
|
# - ./config:/config:rw
|