Add docker-compose.yml

This commit is contained in:
Keannu Christian Bernasol 2025-04-14 23:42:07 +08:00
parent 68d0bc3792
commit 0a1d7ac72a
3 changed files with 9 additions and 1 deletions

1
.env.sample Normal file
View file

@ -0,0 +1 @@
PORT=9001

1
.gitignore vendored
View file

@ -32,3 +32,4 @@ yarn-debug.log*
yarn-error.log*
.vscode
.env

6
docker-compose.yml Normal file
View file

@ -0,0 +1,6 @@
services:
app:
build: .
env_file: .env
ports:
- "${PORT}:80"