docker-compose.linux-gnu-build.yml 477 B

1234567891011121314
  1. version: '3.4'
  2. services:
  3. joystream-node:
  4. image: joystream/node:latest
  5. build:
  6. # context is relative to the compose file
  7. context: .
  8. # dockerfile is relative to the context
  9. dockerfile: joystream-node.Dockerfile
  10. container_name: joystream-node
  11. volumes:
  12. - /data
  13. command: --dev --alice --validator --unsafe-ws-external --unsafe-rpc-external --rpc-methods Unsafe --rpc-cors=all --log runtime --base-path /data
  14. network_mode: host