feature(docker): Implemented DockerFile, docker compose .env and updated the run.sh file.

This commit is contained in:
2026-04-30 03:12:58 +03:00
parent 0f630b9dca
commit 6b9f6ac291
6 changed files with 142 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
services:
warpbox:
image: warpbox:latest
container_name: warpbox
ports:
- "8080:8080"
volumes:
- ./data:/app/data
env_file:
- .env
restart: unless-stopped