Files
homepage/docker-compose.yaml

27 lines
485 B
YAML
Executable File

services:
web:
image: php:8.2-apache
container_name: homepage
ports:
- "8080:80"
volumes:
- ./web/:/var/www/html:Z
- ./vendor/:/var/www/html/vendor:Z
networks:
- labnet
cal:
image: php:8.2-apache
container_name: calendar
ports:
- "8081:80"
volumes:
- ./cal/:/var/www/html:Z
- ./vendor/:/var/www/html/vendor:Z
networks:
- labnet
profiles:
- cal
networks:
labnet:
external: true