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.

27 lines
511 B

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