funkwhale/compose/app.vue.yml

18 lines
337 B
YAML

services:
app:
image: funkwhale-app
build:
context: ../app
dockerfile: Dockerfile.dev
command: 'yarn dev --host'
ports:
- '${VUE_PORT:-8080}:${VUE_PORT:-8080}'
networks:
- internal
volumes:
- '../app:/app'
- '/app/node_modules'
environment:
- HOST
- VUE_PORT