commit 585c12c617c925023f25cab924ec79a6ace0d782 Author: Roland St. Amand III Date: Sat Mar 8 01:13:37 2025 +0000 initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3af0ccb --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/data diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..96c5178 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +services: + app: + image: gotify/server + container_name: gotify + restart: unless-stopped + ports: + - 0.0.0.0:8082:80 + environment: + - TZ='America/Detroit' + volumes: + - ./data:/app/data