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:
parent
d7574e2ada
commit
6745416d94
|
@ -59,7 +59,7 @@ services:
|
||||||
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
|
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
|
||||||
- libretime_storage:/srv/libretime
|
- libretime_storage:/srv/libretime
|
||||||
environment:
|
environment:
|
||||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx:8080
|
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx:9876
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
image: ghcr.io/libretime/libretime-worker:${LIBRETIME_VERSION:-latest}
|
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_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
|
||||||
- libretime_storage:/srv/libretime
|
- libretime_storage:/srv/libretime
|
||||||
- libretime_assets:/var/www/html
|
- libretime_assets:/var/www/html
|
||||||
|
- sintonia_assets:/var/www/sintonia_webapp
|
||||||
|
|
||||||
nginx:
|
nginx:
|
||||||
image: nginx
|
image: nginx
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
|
- ${SINTONIA_LARAVEL_PORT}:${SINTONIA_LARAVEL_PORT}
|
||||||
depends_on:
|
depends_on:
|
||||||
- legacy
|
- legacy
|
||||||
|
- sintonia-webapp
|
||||||
volumes:
|
volumes:
|
||||||
- libretime_assets:/var/www/html:ro
|
- libretime_assets:/var/www/html:ro
|
||||||
- libretime_storage:/srv/libretime:ro
|
- libretime_storage:/srv/libretime:ro
|
||||||
- ${NGINX_CONFIG_FILEPATH:-./nginx.conf}:/etc/nginx/conf.d/default.conf:ro
|
- ${NGINX_CONFIG_FILEPATH:-./nginx.conf}:/etc/nginx/conf.d/default.conf:ro
|
||||||
|
- sintonia_assets:/var/www/sintonia_webapp
|
||||||
|
|
||||||
icecast:
|
icecast:
|
||||||
image: ghcr.io/libretime/icecast:2.4.4
|
image: ghcr.io/libretime/icecast:2.4.4
|
||||||
|
@ -145,3 +149,4 @@ volumes:
|
||||||
libretime_storage: {}
|
libretime_storage: {}
|
||||||
libretime_assets: {}
|
libretime_assets: {}
|
||||||
libretime_playout: {}
|
libretime_playout: {}
|
||||||
|
sintonia_assets: {}
|
||||||
|
|
Loading…
Reference in New Issue