forked from XRPL-Labs/XRPL-Webhooks
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (41 loc) · 1.02 KB
/
docker-compose.yml
File metadata and controls
43 lines (41 loc) · 1.02 KB
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: '2.1'
networks:
xrpl-hooks-bridge:
driver: bridge
services:
web:
build:
context: .
dockerfile: Dockerfile
image: xrplwebhook
restart: always
container_name: xrplwebhook
networks:
- xrpl-hooks-bridge
volumes:
- ./lib/web/templates:/usr/src/app/lib/web/templates
ports:
- 4000:4000
links:
- postgres
environment:
- PGSQL_DEV_DATABASE=xrpllabsdev
- PGSQL_DEV_USERNAME=postgres
- PGSQL_DEV_PASSWORD=xrpllabswebhook
- PGSQL_DEV_HOSTNAME=postgres
- PGSQL_TEST_DATABASE=xrpllabstst
- PGSQL_TEST_USERNAME=postgres
- PGSQL_TEST_PASSWORD=xrpllabswebhook
- PGSQL_TEST_HOSTNAME=postgres
- GITHUB_CLIENT_ID=XXXX
- GITHUB_CLIENT_SECRET=XXXX
- TWITTER_CONSUMER_KEY=XXXX
- TWITTER_CONSUMER_SECRET=XXXX
postgres:
image: postgres:alpine
restart: always
networks:
- xrpl-hooks-bridge
container_name: xrplwebhook_db
environment:
- POSTGRES_PASSWORD=xrpllabswebhook