jgwehr / homelab-docker

Docker Compose for building a home lab
119 stars 16 forks source link

Include BitWarden #2

Open jgwehr opened 3 years ago

jgwehr commented 3 years ago

https://bitwarden.com/help/article/install-on-premise/#configure-your-domain

jgwehr commented 2 years ago

https://www.linode.com/docs/guides/how-to-self-host-the-bitwarden-rs-password-manager/

jgwehr commented 2 years ago

Setting up Caddy

jgwehr commented 2 years ago

Building a Caddy instance with DuckDNS built in, without having to self-build: https://ben.balter.com/2021/09/01/how-i-re-over-engineered-my-home-network/

docker-compose

services:
  caddy:
    build:
      context: .
      dockerfile: caddy.Dockerfile

caddy.Dockerfile

FROM caddy:builder AS builder
RUN xcaddy build \
    --with github.com/caddy-dns/cloudflare
FROM caddy:latest
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
jgwehr commented 1 year ago

https://github.com/jgwehr/homelab-docker/issues/26