15 lines
326 B
YAML
15 lines
326 B
YAML
services:
|
|
nodejs:
|
|
image: node:latest
|
|
container_name: nodejs_app
|
|
network_mode: host
|
|
restart: on-failure
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
max_attempts: 3
|
|
window: 3600s
|
|
volumes:
|
|
- .:/app
|
|
working_dir: /app
|
|
command: sh -c "npm install && npm start" |