1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-06-27 00:31:02 +02:00
Files
dockerfiles/json-server/docker-compose.yml
2019-03-17 13:11:04 +08:00

9 lines
159 B
YAML

json-server:
image: vimagick/json-server
command: -H 0.0.0.0 -p 3000 -w db.json
ports:
- "3000:3000"
volumes:
- ./data:/data
restart: always