chore: deploy frontend to summer; fix healthcheck localhost→127.0.0.1

alpine wget resolves localhost to ::1 (IPv6) but node only binds IPv4;
switched healthcheck URL to 127.0.0.1 to fix unhealthy container.
This commit is contained in:
devilreef 2026-04-30 09:52:03 +06:00
parent eb701bbb8a
commit 9f9c2148b4
Signed by: devilreef
SSH key fingerprint: SHA256:UZisRr4iuXx+IhkbZnR655L2RWAT6o2rgbGv5F/6m3Y

View file

@ -63,7 +63,7 @@ services:
target: /now-playing
read_only: true
healthcheck:
test: ['CMD', 'wget', '-q', '-O', '-', 'http://localhost:3000/api/stations.json']
test: ['CMD', 'wget', '-q', '-O', '-', 'http://127.0.0.1:3000/api/stations.json']
interval: 30s
timeout: 5s
retries: 3