- services:
- app:
- build: .
- container_name: kci-kanban-app
- ports:
- - "8080:80"
- volumes:
- - .:/var/www/html
- env_file: .env
- extra_hosts:
- # Maps the PrintStream server hostname inside the container.
- # Set PRINTSTREAM_HOST to the server's IP address in .env
- # (Docker cannot resolve Windows LAN hostnames by name).
- - "KCI-PS-2024:${PRINTSTREAM_HOST}"
- networks:
- - proxy
-
- networks:
- proxy:
- external: true
|