From 7abd825b024310cf80b70d14daf696e70b0c08fe Mon Sep 17 00:00:00 2001 From: Alexa Amundson Date: Thu, 24 Jul 2025 18:41:37 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20Added=20Docker=20Compose=20for?= =?UTF-8?q?=20full=20Lucidia=20stack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..82ca9d9 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,24 @@ +# docker-compose.yml + +version: "3.9" + +services: + lucidia-api: + build: . + container_name: lucidia-api + command: uvicorn api.server:app --host 0.0.0.0 --port 8000 --reload + volumes: + - .:/app + ports: + - "8000:8000" + depends_on: + - nginx + + nginx: + image: nginx:latest + container_name: lucidia-nginx + volumes: + - ./nginx/lucidia.conf:/etc/nginx/conf.d/default.conf + ports: + - "80:80" +