forked from galtproject/geesome-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (38 loc) · 840 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (38 loc) · 840 Bytes
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
40
version: "3.9"
services:
web:
container_name: geesome
build: .
command: npm run in-docker-start
restart: always
ports:
- "2052:2052"
- "2082:2082"
depends_on:
- ipfs
volumes:
- "${GEESOME_DATA}:/geesome-node/data"
- "${GEESOME_FRONTEND_DIST}:/geesome-node/frontend/docker-dist"
environment:
- IPFS_PROFILE
- DEBUG
- SSG_RUNTIME
client:
image: nginx
ports:
- "127.0.0.1:2042:80"
volumes:
- "${GEESOME_FRONTEND_DIST}:/usr/share/nginx/html"
ipfs:
container_name: go_ipfs
image: "ipfs/kubo:v0.21.0"
restart: always
environment:
- IPFS_PROFILE
ports:
- "4001:4001"
- "8080:8080"
- "127.0.0.1:5001:5001"
volumes:
- "${STORAGE_STAGING}:/export"
- "${STORAGE_DATA}:/data/ipfs"