summaryrefslogtreecommitdiff
path: root/roles/ntfy/templates
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-04-12 16:57:00 -0400
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-04-12 16:57:00 -0400
commitf9d62cc8a792b7b1a2c52a7d8102895473b3c72a (patch)
tree362f40d95af48512bc224e7490eff63e115b7689 /roles/ntfy/templates
parent64a2990c536b8a436279db9c576e75c6c1782546 (diff)
downloadoldinfra-f9d62cc8a792b7b1a2c52a7d8102895473b3c72a.tar.gz
oldinfra-f9d62cc8a792b7b1a2c52a7d8102895473b3c72a.zip
ntfy
Diffstat (limited to 'roles/ntfy/templates')
-rw-r--r--roles/ntfy/templates/docker-compose.yml.j215
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