diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-12 16:57:00 -0400 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-12 16:57:00 -0400 |
commit | f9d62cc8a792b7b1a2c52a7d8102895473b3c72a (patch) | |
tree | 362f40d95af48512bc224e7490eff63e115b7689 /roles/ntfy/templates | |
parent | 64a2990c536b8a436279db9c576e75c6c1782546 (diff) | |
download | oldinfra-f9d62cc8a792b7b1a2c52a7d8102895473b3c72a.tar.gz oldinfra-f9d62cc8a792b7b1a2c52a7d8102895473b3c72a.zip |
ntfy
Diffstat (limited to 'roles/ntfy/templates')
-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 |