Dateien nach "/" hochladen

This commit is contained in:
2026-07-28 10:13:42 +00:00
parent bc0dca6608
commit 2a6216c0de
2 changed files with 162 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
services:
php:
build:
context: .
dockerfile: docker/php.Dockerfile
volumes:
- .:/var/www/html
- geburtsverein-data:/var/www/html/data
restart: unless-stopped
nginx:
image: nginx:alpine
ports:
- "8080:80"
volumes:
- .:/var/www/html
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- php
restart: unless-stopped
volumes:
geburtsverein-data: