Installation for S&D
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.

31 lines
669 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. version: '3'
  2. services:
  3. core:
  4. build:
  5. context: .
  6. dockerfile: Dockerfile.core
  7. container_name: search-and-display-core
  8. ports:
  9. - "80:80"
  10. - "443:443"
  11. depends_on:
  12. - ingest
  13. ingest:
  14. build:
  15. context: .
  16. dockerfile: Dockerfile.ingest
  17. container_name: search-and-display-ingest
  18. expose:
  19. - 80
  20. depends_on:
  21. - redis
  22. redis:
  23. image: "redis:alpine"
  24. container_name: search-and-display-redis
  25. expose:
  26. - 6379
  27. environment:
  28. - REDIS_REPLICATION_MODE=master