mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-25 02:04:06 +02:00
12 lines
223 B
YAML
12 lines
223 B
YAML
version: "3.8"
|
|
services:
|
|
json-server:
|
|
image: vimagick/json-server
|
|
command: -H 0.0.0.0 -p 3000 -w db.json
|
|
init: true
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./data:/data
|
|
restart: unless-stopped
|