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

14 lines
313 B
YAML
Raw Normal View History

2024-10-25 23:36:20 +02:00
services:
vue_app:
container_name: changeme_container
2024-10-25 23:36:20 +02:00
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}"