An easy-to-host PDS on the ATProtocol, iPhone and MacOS. Maintain control of your keys and data, always.
1
fork

Configure Feed

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

at main 18 lines 429 B view raw
1{ pkgs, relay }: 2pkgs.dockerTools.buildLayeredImage { 3 name = "relay"; 4 tag = "latest"; 5 contents = [ 6 relay 7 pkgs.sqlite.out # runtime shared library only; .out excludes headers/dev outputs 8 pkgs.cacert 9 pkgs.tzdata 10 ]; 11 config = { 12 Entrypoint = [ "${relay}/bin/relay" ]; 13 Env = [ 14 "SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt" 15 "TZDIR=${pkgs.tzdata}/share/zoneinfo" 16 ]; 17 }; 18}