Selector/docker-compose.yml

33 lines
665 B
YAML

version: "3.9"
services:
web:
image: sarsoo/selector-web:latest
ports:
- "8080:80"
depends_on:
- database
- redis
volumes:
- "./Selector.Web/appsettings.Production.json:/appsettings.Production.json"
environment:
DOTNET_ENVIRONMENT: Production
cli:
image: sarsoo/selector-cli:latest
depends_on:
- database
- redis
volumes:
- "./Selector.CLI/appsettings.Production.json:/appsettings.Production.json"
environment:
DOTNET_ENVIRONMENT: Production
redis:
image: redis:alpine
ports:
- "6379:6379"
database:
image: postgres
ports:
- "5432:5432"