Files
dockerservertest/docker-compose.yml
T
2023-05-21 05:56:51 -05:00

19 lines
364 B
YAML

version: '3'
services:
install:
image: node:8.16.1
command: npm install
volumes:
- ./appdata/simplenotes/app:/app
working_dir: ./appdata/simplenotes/app
dev:
image: node:8.16.1
command: npm start
ports:
- "4000:4000"
volumes:
- ./appdata/simplenotes/app:/app
working_dir: ./appdata/simplenotes/app