Being suport for binary builds, AUR, Flatpak

This commit is contained in:
2025-10-17 22:46:32 -04:00
parent b9caeb7d23
commit eaf08421b0
16 changed files with 824 additions and 0 deletions

17
docker-compose.yml.apache Normal file
View File

@@ -0,0 +1,17 @@
services:
web:
build:
context: .
dockerfile: Dockerfile.web
expose: ["80"]
restart: unless-stopped
proxy:
image: httpd:2.4-alpine
volumes:
- ./proxy/httpd.conf:/usr/local/apache2/conf/httpd.conf:ro
ports:
- "8080:80"
depends_on:
- web
restart: unless-stopped