docker-compose.yml 543 B

12345678910111213141516171819202122232425262728
  1. version: '3.4'
  2. services:
  3. joystream-aio:
  4. tty: true
  5. container_name: joystream-aio-$CHAIN_NAME
  6. privileged: true
  7. image: joystream-aio
  8. build:
  9. context: ./
  10. args:
  11. - "JOYSTREAM_BRANCH=${JOYSTREAM_BRANCH}"
  12. - "RUNTIME_PROFILE=${RUNTIME_PROFILE}"
  13. volumes:
  14. - type: bind
  15. source: ./data
  16. target: /data
  17. - type: bind
  18. source: ./container-scripts
  19. target: /scripts
  20. ports:
  21. - "${GRAPHQL_SERVER_PORT}:8081"
  22. - "${NODE_PORT}:9944"
  23. command: bash