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