-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
43 lines (42 loc) · 952 Bytes
/
docker-compose.dev.yml
File metadata and controls
43 lines (42 loc) · 952 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
41
42
43
version: "3.7"
services:
web3signer:
build:
context: signer
environment:
NETWORK: "prater"
PGPASSWORD: "password"
POSTGRES_PASSWORD: "password"
POSTGRES_USER: "postgres"
POSTGRES_DB: "web3signer"
security_opt:
- "seccomp:unconfined"
depends_on:
- postgres
networks:
keymanager_frontend:
aliases:
- web3signer.web3signer-prater.dappnode
postgres:
build:
context: postgres
environment:
NETWORK: "prater"
PGPASSWORD: "password"
POSTGRES_PASSWORD: "password"
POSTGRES_USER: "postgres"
POSTGRES_DB: "web3signer"
networks:
keymanager_frontend:
aliases:
- postgres.web3signer-prater.dappnode
ui:
build:
context: ui
networks:
keymanager_frontend:
aliases:
- ui.web3signer-prater.dappnode
networks:
keymanager_frontend:
name: keymanager_frontend