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.

12 lines
300 B

3 years ago
  1. redis:
  2. image: 'redis:alpine'
  3. ports:
  4. - '${FORWARD_REDIS_PORT:-6379}:6379'
  5. volumes:
  6. - 'sailredis:/data'
  7. networks:
  8. - sail
  9. healthcheck:
  10. test: ["CMD", "redis-cli", "ping"]
  11. retries: 3
  12. timeout: 5s