Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion services/pocket-id/.env
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion services/pocket-id/config/serve.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"${TS_CERT_DOMAIN}:443": {
"Handlers": {
"/": {
"Proxy": "http://127.0.0.1:80"
"Proxy": "http://127.0.0.1:1411"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions services/pocket-id/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
restart: always