diff --git a/services/pocket-id/.env b/services/pocket-id/.env index 9bb963d..4386ef8 100644 --- a/services/pocket-id/.env +++ b/services/pocket-id/.env @@ -4,6 +4,6 @@ #Find Specific Variables in documentation https://stonith404.github.io/pocket-id/configuration/environment-variables SERVICE=pocket-id IMAGE_URL=ghcr.io/pocket-id/pocket-id -SERVICEPORT=80 +SERVICEPORT=1411 TS_AUTHKEY= DNS_SERVER=9.9.9.9 diff --git a/services/pocket-id/config/serve.json b/services/pocket-id/config/serve.json index 7135179..f28bded 100644 --- a/services/pocket-id/config/serve.json +++ b/services/pocket-id/config/serve.json @@ -8,7 +8,7 @@ "${TS_CERT_DOMAIN}:443": { "Handlers": { "/": { - "Proxy": "http://127.0.0.1:80" + "Proxy": "http://127.0.0.1:1411" } } } diff --git a/services/pocket-id/docker-compose.yml b/services/pocket-id/docker-compose.yml index 5a2301a..695f91c 100644 --- a/services/pocket-id/docker-compose.yml +++ b/services/pocket-id/docker-compose.yml @@ -52,9 +52,9 @@ services: tailscale: condition: service_healthy healthcheck: - test: ["curl -f http://localhost/health"] # Check if process is running + test: ["CMD", "curl -f http://localhost/health"] # Check if process is running interval: 1m # How often to perform the check timeout: 10s # Time to wait for the check to succeed retries: 3 # Number of retries before marking as unhealthy start_period: 30s # Time to wait before starting health checks - restart: always \ No newline at end of file + restart: always