diff options
Diffstat (limited to 'roles/ntfy/templates/docker-compose.yml.j2')
-rw-r--r-- | roles/ntfy/templates/docker-compose.yml.j2 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/ntfy/templates/docker-compose.yml.j2 b/roles/ntfy/templates/docker-compose.yml.j2 new file mode 100644 index 0000000..4ee982e --- /dev/null +++ b/roles/ntfy/templates/docker-compose.yml.j2 @@ -0,0 +1,15 @@ +version: "2.1" +services: + ntfy: + image: binwiederhier/ntfy + container_name: ntfy + command: + - serve + environment: + - TZ=UTC + volumes: + - ./cache:/var/cache/ntfy + - ./conf:/etc/ntfy + ports: + - 127.0.0.1:22311:80 + restart: unless-stopped |