18 lines
410 B
YAML
18 lines
410 B
YAML
services:
|
|
|
|
server-php:
|
|
build:
|
|
context: .
|
|
args:
|
|
FRANKENPHP_IMAGE: ${FRANKENPHP_VERSION}
|
|
dockerfile: docker/Dockerfile.frankenphp
|
|
|
|
volumes:
|
|
- ./www:/app
|
|
- ./host/frankenphp/conf/Caddyfile:/etc/frankenphp/Caddyfile
|
|
|
|
healthcheck:
|
|
test: [ "CMD-SHELL", "curl -s http://localhost/index.php || exit 1" ]
|
|
interval: 0.2s
|
|
timeout: 1s
|
|
retries: 10 |