feat: import
All checks were successful
web/send/pipeline/head This commit looks good

This commit is contained in:
Julien Cabillot
2025-12-18 10:09:38 -05:00
commit 06a31cd59e
12 changed files with 808 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
version: '3.8'
services:
web:
build:
context: .
dockerfile: pkg/Dockerfile
image: send-frankenphp:test
container_name: send-web
ports:
- "8081:80"
volumes:
- ./public:/app
- ./pkg/files/Caddyfile:/etc/frankenphp/Caddyfile
- ./.htpasswd:/etc/frankenphp/htpasswd
environment:
- LOG_LEVEL=DEBUG
- CADDY_GLOBAL_OPTIONS=debug
security_opt:
- label=disable
restart: unless-stopped