mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
15 lines
299 B
YAML
15 lines
299 B
YAML
|
version: "3.8"
|
||
|
services:
|
||
|
ntfy:
|
||
|
image: binwiederhier/ntfy:v2.11.0
|
||
|
command: serve
|
||
|
ports:
|
||
|
- "2586:2586"
|
||
|
volumes:
|
||
|
- ./data/etc:/etc/ntfy
|
||
|
- ./data/log:/var/log/ntfy
|
||
|
- ./data/var:/var/lib/ntfy
|
||
|
environment:
|
||
|
- TZ=Asia/Shanghai
|
||
|
restart: unless-stopped
|