Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
shocknet-justin committed Apr 29, 2024
1 parent 5f65a74 commit 97080ae
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
29 changes: 29 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Use Node.js 18 as the base image
FROM node:18-alpine

# Create the working directory
WORKDIR /app

# Copy package.json and package-lock.json first for efficient caching
COPY package*.json ./

# Install dependencies
RUN npm install

# Copy the rest of the project files
COPY . .

# Compile TypeScript (assuming tsc is installed as a dev dependency)
RUN npm run tsc

# Expose the port for your application (replace 3000 with the correct port)
EXPOSE 21000

# Set environment variables
ENV LND_ADDRESS=127.0.0.1:10009
ENV LND_CERT_PATH=/root/.lnd/tls.cert
ENV LND_MACAROON_PATH=/root/.lnd/data/chain/bitcoin/mainnet/admin.macaroon
ENV DATABASE_FILE=db.sqlite

# Start the application
CMD ["node", "build/src/index.js"]
15 changes: 15 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: '3.8'

services:
lightning-pub:
image: lightning-pub
volumes:
- ./data:/app/data # Mount a volume to persist db.sqlite
environment:
# Provide actual LND container name or network details for LND_ADDRESS
LND_ADDRESS: lnd:10009
depends_on:
- lnd

lnd:
# ... configuration for the LND container
1 change: 0 additions & 1 deletion testy.json

This file was deleted.

0 comments on commit 97080ae

Please sign in to comment.