This commit is contained in:
vorpax
2026-02-02 04:14:53 +01:00
parent 187821c88e
commit 6be40f5a6a
44 changed files with 12015 additions and 1688 deletions

18
docker-compose.tina.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
tina:
image: node:20-alpine
working_dir: /app
volumes:
- .:/app
- /app/node_modules
ports:
- "4001:4001"
environment:
- NODE_ENV=production
command: >
sh -c "npm install -g pnpm &&
pnpm install &&
pnpm tinacms dev --host 0.0.0.0 --port 4001"
restart: unless-stopped