mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-01-09 06:51:23 +08:00
26 lines
486 B
YAML
26 lines
486 B
YAML
version: "3"
|
|
services:
|
|
nginx:
|
|
build:
|
|
context: .
|
|
dockerfile: nginx/Dockerfile
|
|
ports:
|
|
- "8080:80"
|
|
networks:
|
|
- internal
|
|
volumes:
|
|
- ../:/var/www/html
|
|
php:
|
|
build:
|
|
context: .
|
|
dockerfile: php/Dockerfile
|
|
networks:
|
|
- internal
|
|
environment:
|
|
XDEBUG_MODE: debug
|
|
XDEBUG_CONFIG: client_host=host.docker.internal client_port=9003
|
|
volumes:
|
|
- ../:/var/www/html
|
|
networks:
|
|
internal:
|
|
driver: bridge |