-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.override.yml
69 lines (64 loc) · 1.52 KB
/
docker-compose.override.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
version: "3.8"
services:
storage:
build: .
env_file: .env.local
volumes:
- ./storage:/storage/storage
ports:
- ${SERVER_PORT}:${SERVER_PORT}
networks:
default:
aliases:
- "dev.storage"
# postgres:
# ports:
# - 5432:5432
# kubo:
# image: ipfs/kubo:v0.15.0
# ports:
# - 5001:5001
# custody:
# image: ghcr.io/merklebot/custody:main
# environment:
# - DATABASE_URL=postgresql://custody:custody@custody_postgres/custody
# - CRUST_MNEMONIC=
# - IPFS_ADDRESS=/dns4/kubo/tcp/5001
# ports:
# - 8001:8000
# entrypoint: >
# sh -c "
# sleep 3 &&
# /bin/bash start.sh
# "
#
# custody_postgres:
# image: postgres:15
# environment:
# - POSTGRES_SERVER=custody_postgres
# - POSTGRES_USER=custody
# - POSTGRES_PASSWORD=custody
# - POSTGRES_DB=custody
# web3_storage_manager:
# image: ghcr.io/merklebot/web3-storage-manager:main
# ports:
# - 8002:8000
# environment:
# - CRUST_SEED=
# - POSTGRES_SERVER=postgres_web3_storage_manager
# - POSTGRES_USER=merklebot
# - POSTGRES_PASSWORD=merklebot
# - POSTGRES_DB=web3storagemanager
# entrypoint: >
# sh -c "
# sleep 3 &&
# /bin/bash start.sh
# "
#
# postgres_web3_storage_manager:
# image: postgres:15
# environment:
# - POSTGRES_SERVER=postgres_web3_storage_manager
# - POSTGRES_USER=merklebot
# - POSTGRES_PASSWORD=merklebot
# - POSTGRES_DB=web3storagemanager