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

version: '3'
services:
core:
build:
context: .
dockerfile: Dockerfile.core
container_name: search-and-display-core
ports:
- "80:80"
- "443:443"
depends_on:
- ingest
ingest:
build:
context: .
dockerfile: Dockerfile.ingest
container_name: search-and-display-ingest
expose:
- 80
depends_on:
- redis
redis:
image: "redis:alpine"
container_name: search-and-display-redis
expose:
- 6379
environment:
- REDIS_REPLICATION_MODE=master