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