docker-compose.yml 560 B

12345678910111213141516
  1. version: "3"
  2. services:
  3. node:
  4. image: joystream/node
  5. # Build image if not found. To prevent build run docker-compose with "--no-build" arg
  6. build:
  7. # context is relative to the compose file
  8. context: ../../../
  9. # dockerfile is relative to the context. thats retarted!
  10. # ideally docker and compose file should be placed
  11. dockerfile: devops/dockerfiles/node-and-runtime/Dockerfile
  12. container_name: joystream-node
  13. command: --dev --alice --validator --unsafe-ws-external --rpc-cors=all
  14. ports:
  15. - "9944:9944"