AzuraCast/frontend/docker-compose.yml

15 lines
474 B
YAML
Raw Normal View History

2021-08-05 06:31:51 +00:00
services :
frontend :
container_name : azuracast_frontend
build :
context : .
2021-09-24 06:14:38 +00:00
user : "${AZURACAST_PUID:-1000}:${AZURACAST_PGID:-1000}"
2021-08-05 06:31:51 +00:00
volumes :
2021-09-24 22:18:10 +00:00
- ${LOCAL_WORKSPACE_FOLDER:-..}/frontend:/data/frontend
- ${LOCAL_WORKSPACE_FOLDER:-..}/resources/locale:/data/resources/locale
- ${LOCAL_WORKSPACE_FOLDER:-..}/web/static:/data/web/static
- frontend_node_modules:/data/frontend/node_modules
2021-08-05 06:31:51 +00:00
volumes :
frontend_node_modules : { }