You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
453 B
22 lines
453 B
version: '2'
|
|
volumes:
|
|
node_modules:
|
|
|
|
services:
|
|
relay:
|
|
build:
|
|
context: .
|
|
volumes:
|
|
- .:/relay
|
|
- .lnd/:/relay/.lnd
|
|
- node_modules:/relay/node_modules
|
|
ports:
|
|
- "3000:3000"
|
|
- "9735:9735"
|
|
- "10009:10009"
|
|
command: "lnd --accept-keysend --configfile=/relay/.lnd/lnd.conf && npm start"
|
|
environment:
|
|
- PORT=3000
|
|
- NODE_IP=mynodeip
|
|
- NODE_ALIAS=myalias
|
|
- NODE_ENV=production
|