Skip to content

Instantly share code, notes, and snippets.

View Anunayj's full-sized avatar

Anunay Anunayj

View GitHub Profile
@Anunayj
Anunayj / static.Dockerfile
Last active February 27, 2021 22:19
Build Letsdane statically
# DOCKER_BUILDKIT=1 docker build -f static.Dockerfile -o build/ .
FROM golang:alpine AS base
RUN apk update && apk add linux-headers gcc make perl musl-dev expat-dev
#Install Openssl
FROM base as setup-openssl
WORKDIR /tmp
RUN wget https://www.openssl.org/source/openssl-1.1.1j.tar.gz && tar -xzf openssl-1.1.1j.tar.gz
@Anunayj
Anunayj / keybase.md
Created February 6, 2021 00:51
Keybase verification

Keybase proof

I hereby claim:

  • I am anunayj on github.
  • I am anunayj (https://keybase.io/anunayj) on keybase.
  • I have a public key ASCpvX4HJWUOXxnDuNdpvX095m3c949CA4IwG_Pu5mWasgo

To claim this, I am signing this object:

@Anunayj
Anunayj / docker-compose.yml
Last active January 17, 2021 01:44
letsdane + full node + docker
version: '3.3'
services:
letsdane:
ports:
- '8080:8080'
volumes:
- ./dane:/root/.letsdane
command: ["-r", "hsd", "-skip-dnssec", "-skip-icann"]
restart: unless-stopped
image: anunayj/letsdane
@Anunayj
Anunayj / docker-compose.yml
Last active January 17, 2021 01:48
letsdane + hsnd docker-compose
version: '3.3'
services:
letsdane:
ports:
- '8080:8080'
volumes:
- ./dane:/root/.letsdane
command: ["-r", "hsnd", "-skip-dnssec", "-skip-icann"]
restart: unless-stopped
image: anunayj/letsdane