-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
28 lines (26 loc) · 1.08 KB
/
docker-compose.yml
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
version: "3.7"
volumes:
database: {}
services:
sateliite-cdn:
build: .
image: ghcr.io/lovvtide/satellite-cdn
restart: unless-stopped
environment:
DB_PATH: /data
S3_BUCKET: dev
S3_ACCESS_KEY_ID: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
S3_SECRET_ACCESS_KEY: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
CF_ACCOUNT_ID: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
APP_SECRET_KEY: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
STORAGE_RATE_USD: "0.05"
LIGHTNING_PROVIDER_PUBKEY: 79f00d3f5a19ec806189fcab03c1be4ff81d18ee4f653c88fac41fe03570f432
LIGHTNING_CALLBACK_URL: https://getalby.com/lnurlp/myapp/callback
DB_CONNECTION_STRING: mongodb://localhost/myapp
CDN_ENDPOINT: http://localhost:5050
BLOB_ENDPOINT: https://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.r2.dev
LISTENER_RELAYS: wss://relay.damus.io,wss://nos.lol,wss://relay.snort.social,wss://relay.nostrplebs.com,wss://relay.plebstr.com,wss://relay.nostr.band,wss://nostr.wine
volumes:
- database:/data
ports:
- "5050"