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.

docker-compose.yml 353B

123456789101112131415161718192021
  1. version: "3.8"
  2. services:
  3. ergo:
  4. init: true
  5. image: ghcr.io/ergochat/ergo:stable
  6. ports:
  7. - "6667:6667/tcp"
  8. - "6697:6697/tcp"
  9. volumes:
  10. - data:/ircd
  11. deploy:
  12. placement:
  13. constraints:
  14. - "node.role == manager"
  15. restart_policy:
  16. condition: on-failure
  17. replicas: 1
  18. volumes:
  19. data: