docker-compose.yml 479 B

12345678910111213141516171819
  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. - "5223:5223"
  12. volumes:
  13. - ./angie.conf:/etc/angie/angie.conf:ro
  14. - ./http.d:/etc/angie/http.d:ro
  15. - ./stream.d:/etc/angie/stream.d:ro
  16. - ../acme:/var/lib/angie/acme
  17. - ../auth.basic:/etc/angie/auth.basic:ro
  18. - /var/www/html:/var/www/html