There was an error while loading. Please reload this page.
For compose docker containers with Nats and PostgresDB
path/to/project/docker-compose.yaml
version: "2.2" services: nats: image: nats-streaming ports: - "4222:4222" command: '--max_channels=2000' db: image: postgres:latest restart: unless-stopped environment: POSTGRES_PASSWORD: postgres # username: postgres POSTGRES_DB: blockchain_wallets # name of service db ports: - 5432:5432
Run in path/to/project docker-compose up
path/to/project
docker-compose up