ntfy: move to main
This commit is contained in:
parent
e209b5a7c0
commit
62fae0a058
|
@ -86,5 +86,23 @@ services:
|
||||||
profiles:
|
profiles:
|
||||||
- base
|
- base
|
||||||
|
|
||||||
|
ntfy:
|
||||||
|
image: binwiederhier/ntfy
|
||||||
|
container_name: ntfy
|
||||||
|
command:
|
||||||
|
- serve
|
||||||
|
user: ${PUID}:${PGID}
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ}
|
||||||
|
volumes:
|
||||||
|
- "${DOCKER_STORAGE_PATH}/ntfy/cache:/var/cache/ntfy"
|
||||||
|
- "${DOCKER_STORAGE_PATH}/ntfy/config:/etc/ntfy"
|
||||||
|
ports:
|
||||||
|
- "${NTFY_EXTERNAL_PORT}:${NTFY_INTERNAL_PORT}"
|
||||||
|
profiles:
|
||||||
|
- base
|
||||||
|
- infra
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
timetracker-static:
|
timetracker-static:
|
||||||
|
|
36
ntfy.yml
36
ntfy.yml
|
@ -1,18 +1,20 @@
|
||||||
---
|
---
|
||||||
version: "2.1"
|
version: "2.1"
|
||||||
services:
|
services:
|
||||||
ntfy:
|
ntfy:
|
||||||
image: binwiederhier/ntfy
|
image: binwiederhier/ntfy
|
||||||
container_name: ntfy
|
container_name: ntfy
|
||||||
command:
|
command:
|
||||||
- serve
|
- serve
|
||||||
user: ${PUID}:${PGID}
|
user: ${PUID}:${PGID}
|
||||||
environment:
|
environment:
|
||||||
- TZ=${TZ}
|
- TZ=${TZ}
|
||||||
volumes:
|
volumes:
|
||||||
- "${DOCKER_STORAGE_PATH}/ntfy/cache:/var/cache/ntfy"
|
- "${DOCKER_STORAGE_PATH}/ntfy/cache:/var/cache/ntfy"
|
||||||
- "${DOCKER_STORAGE_PATH}/ntfy/config:/etc/ntfy"
|
- "${DOCKER_STORAGE_PATH}/ntfy/config:/etc/ntfy"
|
||||||
ports:
|
ports:
|
||||||
- "${NTFY_EXTERNAL_PORT}:${NTFY_INTERNAL_PORT}"
|
- "${NTFY_EXTERNAL_PORT}:${NTFY_INTERNAL_PORT}"
|
||||||
restart: unless-stopped
|
profiles:
|
||||||
|
- base
|
||||||
|
- infra
|
||||||
|
restart: unless-stopped
|
||||||
|
|
Loading…
Reference in New Issue