generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.dev.yaml
39 lines (34 loc) · 1.03 KB
/
docker-compose.dev.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
services:
# kamu:
# image: ghcr.io/kamu-data/kamu-base:latest-with-data
# container_name: "kamu"
# ports:
# - "3080:3080"
# - "39189:39189"
# command: kamu system api-server --http-port 3080 --address 0.0.0.0
api:
build:
context: ./api
dockerfile: ./Dockerfile
ports:
- 3000:3000
# Swarm listens on all interfaces, so is remotely reachable.
- 4001:4001/tcp
- 4001:4001/udp
# The following ports only listen on the loopback interface, so are not remotely reachable by default.
# If you want to override these or add more ports, see https://docs.docker.com/compose/extends/ .
# API port, which includes admin operations, so you probably don't want this remotely accessible.
- 127.0.0.1:5001:5001
# HTTP Gateway
- 127.0.0.1:8080:8080
volumes:
- ipfs_path:/data/ipfs
- ipfs_fuse:/ipfs
- ipns_fuse:/ipns
- ./api:/app
- /app/node_modules
command: /app/start.sh
volumes:
ipfs_path:
ipfs_fuse:
ipns_fuse: