force-orange-2022/docker-compose.yml
2024-03-24 10:52:06 +01:00

21 lines
467 B
YAML

version: "3.6"
services:
app:
build:
context: ./
dockerfile: Dockerfile
args:
- NODE_ENV=development
volumes:
- ./:/opt/node_app/app:delegated
- ./package.json:/opt/node_app/app/package.json
- ./yarn.lock:/opt/node_app/app/yarn.lock:cached
ports:
- "3000:3000"
env_file:
- .env
tty: true
volumes:
notused: