From bcc86b544094dcc353bd90e207f0a8af5a5052b5 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Fri, 11 Apr 2025 21:52:41 -0400 Subject: [PATCH] feat: Initial commit. --- compose.yaml | 13 +++++++++++++ example.env | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 compose.yaml create mode 100644 example.env diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..fca2d2a --- /dev/null +++ b/compose.yaml @@ -0,0 +1,13 @@ +services: + docs: + image: git.housh.dev/homelab/docs:latest + container_name: docs + restart: unless-stopped + ports: + - ${PORT:-8081}:80 + networks: + - proxy + +networks: + proxy: + external: true diff --git a/example.env b/example.env new file mode 100644 index 0000000..10b0f14 --- /dev/null +++ b/example.env @@ -0,0 +1,3 @@ +PORT=8081 +OAUTH_CLIENT_ID=client_id # Replace with client id. +OAUTH_CLIENT_SECRET=secret # Replace with client secret.