mirror of
https://github.com/Permissionless-Software-Foundation/psf-bch-api-base.git
synced 2026-09-22 01:02:00 -07:00
20 lines
533 B
YAML
20 lines
533 B
YAML
# Start the service with the command 'docker-compose up -d'
|
|
|
|
services:
|
|
psf-bch-api:
|
|
build: .
|
|
container_name: psf-bch-api
|
|
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
|
|
- ./.env:/home/safeuser/.env
|
|
restart: always |