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.

23 lines
491 B

version: '2'
volumes:
node_modules:
services:
relay:
build:
context: .
dockerfile: Dockerfile.lndrelay
volumes:
5 years ago
- .:/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