1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/json-server/docker-compose.yml

12 lines
232 B
YAML
Raw Normal View History

2021-10-11 13:29:24 +02:00
version: "3.8"
services:
json-server:
image: vimagick/json-server
2024-02-06 16:02:53 +02:00
command: -h 0.0.0.0 -p 3000 -s ./public db.json
2021-10-11 13:29:24 +02:00
init: true
ports:
- "3000:3000"
volumes:
- ./data:/data
restart: unless-stopped