Files
script-vps/vuejs/docker-compose.yml

14 lines
313 B
YAML

services:
vue_app:
container_name: changeme_container
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
ports:
- ${EXTERNAL_PORT}:${INTERNAL_PORT}
volumes:
- .:/app
- /app/node_modules
command: "npm run dev -- --host --port ${INTERNAL_PORT}"