Selector/docker-compose.build.yml

44 lines
952 B
YAML
Raw Normal View History

version: "3.9"
services:
web:
build:
context: .
dockerfile: Dockerfile.Web
ports:
- "8080:80"
depends_on:
- database
- redis
volumes:
2022-02-13 20:21:27 +00:00
- "./Selector.Web/appsettings.Production.json:/app/appsettings.Production.json"
2022-11-15 08:42:05 +00:00
- "./Selector.Web/log:/app/log"
environment:
DOTNET_ENVIRONMENT: Production
cli:
build:
context: .
dockerfile: Dockerfile.CLI
depends_on:
- database
- redis
volumes:
2022-02-13 20:21:27 +00:00
- "./Selector.CLI/appsettings.Production.json:/app/appsettings.Production.json"
2022-11-15 08:42:05 +00:00
- "./Selector.CLI/log:/app/log"
environment:
DOTNET_ENVIRONMENT: Production
redis:
2022-11-08 20:14:22 +00:00
image: redis:7
ports:
- "6379:6379"
database:
image: postgres:14
ports:
- "5432:5432"
2022-02-13 20:21:27 +00:00
env_file: .env # set POSTGRES_USER, POSTGRES_PASSWORD, POSTGRES_DB
2022-02-27 21:53:27 +00:00
volumes:
- database-data:/var/lib/postgresql/data
volumes:
database-data: