14 lines
318 B
YAML
14 lines
318 B
YAML
services:
|
|
vue_app:
|
|
container_name: nom_container_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}"
|