From ad2722842900cb247d9fff9bacd80dfa42b51448 Mon Sep 17 00:00:00 2001 From: "@RandyMcMillan" Date: Mon, 20 Feb 2023 05:51:39 -0500 Subject: [PATCH] docker-compose.yml: add example config (#665) --- docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..8315aa50 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +version: '3' +services: +# Teedy Application + teedy-server: + image: sismics/docs:v1.10 + restart: unless-stopped + ports: + # Map internal port to host + - 8080:8080 + environment: + # Base url to be used + DOCS_BASE_URL: "https://docs.example.com" + # Set the admin email + DOCS_ADMIN_EMAIL_INIT: "admin@example.com" + # Set the admin password (in this example: "superSecure") + DOCS_ADMIN_PASSWORD_INIT: "$$2a$$05$$PcMNUbJvsk7QHFSfEIDaIOjk1VI9/E7IPjTKx.jkjPxkx2EOKSoPS" + volumes: + - ./docs/data:/data