add dockerfile

This commit is contained in:
Yusron alamsyah
2026-04-13 09:22:42 +07:00
parent 133f3b48be
commit 1665f328ab
3 changed files with 55 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: module-farmasi
env_file:
- .env
environment:
AUTH_ORIGIN: ${AUTH_ORIGIN:-http://localhost:3001}
NITRO_HOST: ${NITRO_HOST:-0.0.0.0}
NITRO_PORT: ${NITRO_PORT:-3001}
HOST: ${HOST:-0.0.0.0}
PORT: ${PORT:-3001}
ports:
- "3001:3001"
restart: unless-stopped