blob: 5904174af1a5dc394e3a868422bce646b5488738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
version: '3'
services:
api:
image: williamyeh/json-server:latest
command: --watch -p 80 /data/db.json
volumes:
- ./db.json:/data/db.json
ports:
- "5678:80"
somebook:
build:
context: .
image: registry.digitalocean.com/jan-systems-registry/somebook:latest
ports:
- "1234:8080"
|