You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
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'