mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-08 08:34:20 +02:00
21 lines
467 B
YAML
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:
|