kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
18 wiersze
341 B
YAML
18 wiersze
341 B
YAML
|
|
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
|