a tool for shared writing and social publishing
1{
2 "version": "1.0",
3 "services": {
4 "web": {
5 "image": "feed-service",
6 "port": 3030,
7 "volumes": [
8 {
9 "name": "cursor",
10 "destinationPath": "/cursor"
11 }
12 ]
13 },
14 "worker": {
15 "image": "appview",
16 "volumes": [
17 {
18 "name": "cursor",
19 "destinationPath": "/cursor"
20 }
21 ]
22 }
23 },
24 "images": {
25 "feed-service": {
26 "dockerfile": "feeds/Dockerfile"
27 },
28 "appview": {
29 "dockerfile": "appview/Dockerfile"
30 }
31 }
32}