19 lines
481 B
YAML
19 lines
481 B
YAML
services:
|
|
tvguide:
|
|
build: .
|
|
container_name: tvguide
|
|
restart: unless-stopped
|
|
ports:
|
|
- "18090:80"
|
|
volumes:
|
|
- ./app/public:/var/www/html
|
|
- ./app/src:/var/www/src
|
|
- ./app/templates:/var/www/templates
|
|
- ./app/config:/var/www/config
|
|
- ./app/cache:/var/www/cache
|
|
- ./app/bin:/var/www/bin
|
|
- ./vendor:/var/www/vendor
|
|
- ./epg:/var/www/epg
|
|
- ./logos:/var/www/html/logos
|
|
- ./posters:/var/www/html/posters
|