ldap_forwardauth/docker-compose.yml

22 lines
406 B
YAML
Raw Normal View History

2024-05-27 04:29:36 +00:00
services:
web:
build: ./build/nginx
restart: unless-stopped
ports:
- '80:8080'
volumes:
- ./src:/opt/website:ro
- ./conf/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- php
php:
build: ./build/php
restart: unless-stopped
env_file:
2024-05-30 17:05:46 +00:00
- docker.env
2024-05-27 04:29:36 +00:00
volumes:
- ./src:/opt/website:ro
- ./data/session:/var/lib/php/session