docker-compose-test.yml 456 B

12345678910111213141516171819202122
  1. version: "3"
  2. services:
  3. substrate:
  4. image: paritytech/substrate-playground-template-node-template:sha-7212614
  5. ports:
  6. - "9944:9944"
  7. command: ["./target/release/node-template", "--dev", "--tmp", "--ws-external"]
  8. redis:
  9. image: redis:6.0-alpine
  10. ports:
  11. - "6379:6379"
  12. db:
  13. image: postgres:12
  14. restart: always
  15. ports:
  16. - "5432:5432"
  17. environment:
  18. POSTGRES_PASSWORD: postgres
  19. POSTGRES_DB: test