Skip to content

Instantly share code, notes, and snippets.

View bugfyi's full-sized avatar
🎯
Focusing

bugfyi bugfyi

🎯
Focusing
View GitHub Profile
@bugfyi
bugfyi / docker-compose.yml
Created December 16, 2018 04:47 — forked from skydiver/docker-compose.yml
Shipyard stack using docker-compose
version: '2'
services:
rethinkdb:
container_name: shipyard-rethinkdb
image : rethinkdb
discovery:
container_name: shipyard-discovery
image : microbox/etcd
@bugfyi
bugfyi / start_docker_registry.bash
Created December 24, 2018 12:40 — forked from PieterScheffers/start_docker_registry.bash
Start docker registry with letsencrypt certificates (Linux Ubuntu)
#!/usr/bin/env bash
# install docker
# https://docs.docker.com/engine/installation/linux/ubuntulinux/
# install docker-compose
# https://docs.docker.com/compose/install/
# install letsencrypt
# https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04
@bugfyi
bugfyi / main.go
Created September 10, 2021 05:35 — forked from walm/main.go
Simple Golang DNS Server
package main
import (
"fmt"
"log"
"strconv"
"github.com/miekg/dns"
)