docker-compose.yml 521 B

123456789101112131415161718192021
  1. version: '3.3'
  2. services:
  3. angie:
  4. image: docker.angie.software/angie:minimal
  5. container_name: angie
  6. restart: unless-stopped
  7. ports:
  8. - "80:80"
  9. - "443:443"
  10. - "5222:5222"
  11. - "5269:5269"
  12. - "5443:5443"
  13. - "25566:25566"
  14. volumes:
  15. - ./angie.conf:/etc/angie/angie.conf:ro
  16. - ./http.d:/etc/angie/http.d:ro
  17. - ./stream.d:/etc/angie/stream.d:ro
  18. - ../acme:/var/lib/angie/acme
  19. - ../auth.basic:/etc/angie/auth.basic:ro
  20. - /var/www/html:/var/www/html