placemenext / docker-compose.yml
GitHub Actions
Initial commit
f91b2f3
raw
history blame contribute delete
286 Bytes
version: '3.8'
services:
app:
build: .
container_name: node_app
restart: unless-stopped
ports:
- "7983:7983"
environment:
- NODE_ENV=production
volumes:
- .:/home/node/app
- /home/node/app/node_modules
command: ["node", "index.js"]