feat(docker-compose): added volume for sintonia_webapp assets, nginx opened ports for sintonia_webapp, changed general public url for analyzer

This commit is contained in:
Michael 2025-02-13 12:51:49 +01:00
parent d7574e2ada
commit 6745416d94
1 changed files with 6 additions and 1 deletions

View File

@ -59,7 +59,7 @@ services:
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
- libretime_storage:/srv/libretime
environment:
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx:8080
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx:9876
worker:
image: ghcr.io/libretime/libretime-worker:${LIBRETIME_VERSION:-latest}
@ -119,17 +119,21 @@ services:
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
- libretime_storage:/srv/libretime
- libretime_assets:/var/www/html
- sintonia_assets:/var/www/sintonia_webapp
nginx:
image: nginx
ports:
- 8080:8080
- ${SINTONIA_LARAVEL_PORT}:${SINTONIA_LARAVEL_PORT}
depends_on:
- legacy
- sintonia-webapp
volumes:
- libretime_assets:/var/www/html:ro
- libretime_storage:/srv/libretime:ro
- ${NGINX_CONFIG_FILEPATH:-./nginx.conf}:/etc/nginx/conf.d/default.conf:ro
- sintonia_assets:/var/www/sintonia_webapp
icecast:
image: ghcr.io/libretime/icecast:2.4.4
@ -145,3 +149,4 @@ volumes:
libretime_storage: {}
libretime_assets: {}
libretime_playout: {}
sintonia_assets: {}