diff --git a/.gitignore b/.gitignore index 0313930..0c54f60 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ data/ -config/ .env diff --git a/compose.yaml b/compose.yaml index e674361..7ea3090 100644 --- a/compose.yaml +++ b/compose.yaml @@ -3,16 +3,14 @@ services: image: binwiederhier/ntfy:latest container_name: ntfy restart: unless-stopped + command: serve ports: - - "80:80" + - "8085:80" environment: - - NTFY_BASE_URL=http://10.4.1.110 - - NTFY_UPSTREAM_BASE_URL=https://ntfy.sh + - NTFY_BASE_URL=http://10.4.1.110:8085 - NTFY_CACHE_FILE=/var/cache/ntfy/cache.db - - NTFY_UPSTREAM_ACCESS_TOKEN_FILE=/etc/ntfy/upstream_token volumes: - ./data:/var/cache/ntfy - - ./config:/etc/ntfy networks: - ntfy-net