mirror of
https://github.com/sakaljurgis/kodi-api-server.git
synced 2026-07-08 20:37:41 +00:00
20 lines
500 B
YAML
20 lines
500 B
YAML
services:
|
|
server:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
# working_dir: /srv/app/
|
|
volumes:
|
|
- .:/srv/app/
|
|
- $VIDEO_FILES_FOLDER:$VIDEO_FILES_FOLDER
|
|
- $LOG_FILE_REQUESTS_FOLDER:/srv/data/requests-log
|
|
- $STATIC_SERVE_FOLDER:/srv/data/static
|
|
- $DB_FOLDER:/srv/data/db
|
|
- $RECENT_SEARCHES_FOLDER:/srv/data/recent-searches
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- $PORT:$PORT
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|