first commit

This commit is contained in:
Space
2026-01-16 08:54:02 +01:00
commit 1b41c37a65
4 changed files with 37 additions and 0 deletions

9
docker-compose.yml Normal file
View File

@@ -0,0 +1,9 @@
services:
everything-is-fine:
image: node:22
working_dir: /app
volumes:
- ./:/app
command: sh -c "npm i -g pnpm && pnpm i && node index.js"
ports:
- "2000:3000"