Files
ipd-shomalhospital/docker-compose.yml
2025-11-18 18:45:28 +03:30

19 lines
358 B
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
version: '3.9'
services:
nextjs:
build: .
ports:
- "3000:3000"
depends_on:
- jsonserver
environment:
NEXT_PUBLIC_API_URL: "http://jsonserver:4000"
jsonserver:
image: clue/json-server
ports:
- "4000:4000"
volumes:
- ./db.json:/data/db.json
command: json-server --watch /db.json --port 4000