this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(deployments): bind well-known service to 0.0.0.0

+4 -2
+1
.gitignore
··· 1 + /_pending
+2 -1
deployments/docker-compose.yml
··· 15 15 - no-new-privileges:true 16 16 # Network configuration 17 17 ports: 18 - - "127.0.0.1:3002:3002" 18 + - "0.0.0.0:3002:3002" 19 19 networks: 20 20 - bskycat-net 21 21 # Environment variables 22 22 environment: 23 23 - BSKYCAT_WELLKNOWN_ROOT=/data 24 + - BSKYCAT_PORT=0.0.0.0:3002 24 25 - DD_SERVICE=bsky.cat/well-known 25 26 # Volume for persistent data 26 27 volumes:
+1 -1
deployments/well-known/Dockerfile
··· 1 1 # Build stage 2 2 # Digest from `docker images --digests` 3 - FROM golang:1.25-alpine@sha256:d3f0cf7723f3429e3f9ed846243970b20a2de7bae6a5b66fc5914e228d831bbb AS builder 3 + FROM --platform=$BUILDPLATFORM golang:1.25-alpine@sha256:d3f0cf7723f3429e3f9ed846243970b20a2de7bae6a5b66fc5914e228d831bbb AS builder 4 4 # TODO: automate image digest update 5 5 6 6 # Install ca-certificates for HTTPS requests and create non-root build user