Files

26 lines
758 B
YAML
Raw Permalink Normal View History

2025-11-09 16:16:37 -08:00
# Start the service with the command 'docker-compose up -d'
services:
2026-04-01 10:10:35 -07:00
psf-bch-api-base:
2026-04-01 08:57:10 -07:00
build:
context: ../..
dockerfile: production/docker/Dockerfile
2026-04-01 10:10:35 -07:00
container_name: psf-bch-api-base
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:
2026-03-23 11:23:41 -07:00
- '6100:6100' # <host port>:<container port>
2025-11-09 16:16:37 -08:00
volumes:
2025-11-27 05:58:44 -08:00
#- ./start-rest2nostr.sh:/home/safeuser/REST2NOSTR/start-rest2nostr.sh
2026-04-01 10:10:35 -07:00
- ./.env:/home/safeuser/psf-bch-api-base/.env
2026-03-24 19:06:59 -07:00
- ../data:/home/safeuser/psf-bch-api-base/production/data
- ../data/logs:/home/safeuser/psf-bch-api-base/logs
2026-03-23 13:04:49 -07:00
restart: always