service configurations for desearch.cc
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.

32 lines
549 B

2 years ago
  1. version: '3.3'
  2. networks:
  3. net:
  4. driver: bridge
  5. services:
  6. authelia:
  7. image: authelia/authelia
  8. # image: authelia/authelia:4.31
  9. volumes:
  10. - ./authelia:/config
  11. ports:
  12. - 9091:9091
  13. restart: unless-stopped
  14. healthcheck:
  15. disable: true
  16. environment:
  17. - TZ=Europe/Amsterdam
  18. depends_on:
  19. - redis
  20. redis:
  21. image: redis:alpine
  22. container_name: redis_authelia
  23. volumes:
  24. - ./redis:/data
  25. expose:
  26. - 6379
  27. restart: unless-stopped
  28. environment:
  29. - TZ=Europe/Amsterdam