Files
psf-bch-api/production/docker/docker-compose.yml
T

20 lines
533 B
YAML
Raw Normal View History

2025-11-09 16:16:37 -08:00
# Start the service with the command 'docker-compose up -d'
services:
2025-11-27 05:58:44 -08:00
psf-bch-api:
2025-11-09 16:16:37 -08:00
build: .
2025-11-27 05:58:44 -08:00
container_name: psf-bch-api
2025-11-09 16:16:37 -08:00
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:
2025-11-27 05:58:44 -08:00
#- ./start-rest2nostr.sh:/home/safeuser/REST2NOSTR/start-rest2nostr.sh
- ./.env:/home/safeuser/.env
2025-11-09 16:16:37 -08:00
restart: always