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.