mirror of
https://github.com/RoboSats/robosats-nostr-sync.git
synced 2025-09-11 03:24:13 +00:00
27 lines
567 B
YAML
27 lines
567 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
tor:
|
|
build: ./tor
|
|
container_name: tor
|
|
restart: always
|
|
volumes:
|
|
- ./tor:/var/lib/tor
|
|
ports:
|
|
- 80:8081
|
|
scrapper:
|
|
build: ./app
|
|
container_name: scrapper
|
|
restart: unless-stopped
|
|
environment:
|
|
NOSTR_NSEC: ${NOSTR_NSEC}
|
|
network_mode: service:tor
|
|
nostr:
|
|
build: ./strfry
|
|
restart: always
|
|
volumes:
|
|
- ./strfry/onion_urls.txt:/app/onion_urls.txt:ro
|
|
- ./strfry/config/strfry.conf:/etc/strfry.conf:ro
|
|
- ./strfry/db:/app/strfry-db:rw
|
|
network_mode: service:tor
|