-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.yml
66 lines (66 loc) · 1.22 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
services:
# Postgres Configuration
postgres:
image: postgres:12
volumes:
- database:/var/lib/postgresql/data
- app:/app
expose:
- 5432
ports:
- "5432:5432"
environment:
POSTGRES_USER: arweave
POSTGRES_PASSWORD: arweave
POSTGRES_DB: arweave
command: -p 5432
networks:
- sub-etha
# Arweave Node Configurations
arweave-node:
image: lucaarweave/arweave-node:0.0.4
expose:
- 1984
ports:
- "1984:1984"
environment:
AR_RUNMODE: test
volumes:
- "ardata:/mnt/arweave-data"
# restart: "always"
networks:
- sub-etha
# Arweave Gateway configuration
arweave-gateway:
image: lucaarweave/arweave-gateway:0.0.1
volumes:
- app:/app
links:
- postgres
- arweave-node
expose:
- 3000
ports:
- "3000:3000"
networks:
- sub-etha
# The TestWeave net
testweave:
image: "ghcr.io/demo-hub/testweave-net:latest"
container_name: testweave
links:
- postgres
- arweave-node
- arweave-gateway
ports:
- "80:80"
expose:
- 80
networks:
- sub-etha
volumes:
app:
database:
ardata:
networks:
sub-etha: