From be0b644e4cf66db7edbeb09ba8131c50144b4035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=98=A5?= Date: Wed, 3 Jun 2026 17:21:48 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20docker-compose.ym?= =?UTF-8?q?l=20=E7=94=A8=E4=BA=8E=E5=AE=B9=E5=99=A8=E5=8C=96=E9=83=A8?= =?UTF-8?q?=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..cd19994 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +services: + app: + build: . + container_name: arcticnewone + ports: + - "3100:3000" + environment: + - NODE_ENV=production + - HOST=0.0.0.0 + - PORT=3000 + restart: unless-stopped