選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

28 行
485 B

  1. version: '3'
  2. services:
  3. client:
  4. build: .
  5. image: raft
  6. container_name: client
  7. depends_on: [ node_1, node_2, node_3 ]
  8. command: python3 client.py
  9. node_1:
  10. build: .
  11. image: raft
  12. container_name: node_1
  13. command: sh -c 'python3 node*.py 1'
  14. node_2:
  15. build: .
  16. image: raft
  17. container_name: node_2
  18. command: sh -c 'python3 node*.py 2'
  19. node_3:
  20. build: .
  21. image: raft
  22. container_name: node_3
  23. command: sh -c 'python3 node*.py 3'