mirror of
https://github.com/Permissionless-Software-Foundation/psf-bch-api.git
synced 2026-09-22 01:01:59 -07:00
19 lines
493 B
YAML
19 lines
493 B
YAML
# Start the service with the command 'docker-compose up -d'
|
|
|
|
services:
|
|
rest2nostr:
|
|
build: .
|
|
container_name: rest2nostr
|
|
logging:
|
|
driver: 'json-file'
|
|
options:
|
|
max-size: '10m'
|
|
max-file: '10'
|
|
#mem_limit: 500mb
|
|
#links:
|
|
# - mongo-slp-indexer
|
|
ports:
|
|
- '5942:5942' # <host port>:<container port>
|
|
volumes:
|
|
- ./start-rest2nostr.sh:/home/safeuser/REST2NOSTR/start-rest2nostr.sh
|
|
restart: always |