-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
81 lines (73 loc) · 2.47 KB
/
docker-compose.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
70
71
72
73
74
75
76
77
78
79
80
81
#docker-compose -f docker-compose-agent-ipfs.yml up --build -d
##################################################################################
## Docker-Compose for a Single agent + Single IPFS node
##
## Agent: alice
## Ports:
## Alice = 3000 / 5002 (HTTP) & 5003 (WS)
## IPFS = 8080 (HTTP)
## Network: testnet
##
##################################################################################
services:
##################################################################################
## Alice #########################################################################
##################################################################################
agent0:
container_name: alice
build:
context: .
dockerfile: Dockerfile
restart: always
depends_on:
ipfs0:
condition: service_healthy
ports:
- '5002:5002' #5000 is used for AirPlay in MacOS
- '5003:5003'
- '3000:3000'
environment:
- ENDPOINT='http://alice:5002, ws://alice:5003'
- IPFS_ORIGIN=http://ipfs0:5001
- POSTGRES_HOST=veritable-cloudagent-postgres
- POSTGRES_PORT=5432
networks:
- testnet
##################################################################################
## IPFS ##########################################################################
##################################################################################
ipfs0:
container_name: ipfs0
image: ipfs/kubo:release
ports:
# - "4001:4001" # ipfs swarm - expose if needed/wanted
# - "5001:5001" # ipfs api - expose if needed/wanted
- '8080:8080' # ipfs gateway - expose if needed/wanted
volumes:
- ipfs0:/data/ipfs
networks:
- testnet
##################################################################################
## PostgreSQL ###########################################################################
##################################################################################
postgres:
container_name: veritable-cloudagent-postgres
image: postgres:17.2-alpine
restart: on-failure
ports:
- 5432:5432
volumes:
- veritable-cloudagent-storage:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=postgres-veritable-cloudagent
networks:
- testnet
volumes:
ipfs0:
veritable-cloudagent-storage:
networks:
testnet:
name: testnet
driver: bridge