From be91357b6f4c286a72036cf232da01cea28ec235 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Mon, 28 Jul 2025 12:04:58 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Reorder=20docker-compose.?= =?UTF-8?q?yml=20and=20remove=20unused=20mounts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2a00e49..a0d8ce4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,11 +4,11 @@ services: image: promptbase restart: unless-stopped - ports: - - "4321:4321" - volumes: - # - ./app:/app - # - ./app/node_modules:/app/node_modules - - ./.env:/app/.env:ro # Bind-mount .env as read-only environment: - NODE_ENV=production + + ports: + - "4321:4321" + + volumes: + - ./.env:/app/.env:ro # Bind-mount .env as read-only