This commit is contained in:
2025-09-08 02:21:37 +02:00
parent 396c3c9b44
commit 0fe4bad133
40 changed files with 1159 additions and 164 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
craftstation:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- PORT=3000
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
volumes:
craftstation_data:
networks:
default:
name: craftstation_network