Files
geburtsverein-website/docker-compose.yml
T

21 lines
368 B
YAML

services:
php:
build:
context: .
dockerfile: docker/php.Dockerfile
volumes:
- geburtsverein-data:/var/www/html/data
restart: unless-stopped
nginx:
build:
context: .
dockerfile: docker/nginx.Dockerfile
ports:
- "8080:80"
depends_on:
- php
restart: unless-stopped
volumes:
geburtsverein-data: