dotnet-podcasts/docker-compose.override.yml

60 lines
1.8 KiB
YAML
Raw Normal View History

2021-11-30 03:54:48 +08:00
version: '3.4'
services:
podcast.api:
environment:
2022-12-06 03:44:58 +08:00
- ConnectionStrings__PodcastDb=Server=podcast.db;Database=Podcast;User Id=sa;Password=Pass@word;Encrypt=False
2021-11-30 03:54:48 +08:00
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
- ConnectionStrings__FeedQueue=UseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://azurite
ports:
2022-12-06 05:37:17 +08:00
- "5003:80"
2021-11-30 03:54:48 +08:00
podcast.db:
environment:
- SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
ports:
- "5433:1433"
volumes:
- podcast-sqldata:/var/opt/mssql
podcast.updater.worker:
environment:
2022-12-06 03:44:58 +08:00
- ConnectionStrings__PodcastDb=Server=podcast.db;Database=Podcast;User Id=sa;Password=Pass@word;Encrypt=False
2021-11-30 03:54:48 +08:00
podcast.ingestion.worker:
environment:
2022-12-06 03:44:58 +08:00
- ConnectionStrings__PodcastDb=Server=podcast.db;Database=Podcast;User Id=sa;Password=Pass@word;Encrypt=False
2021-11-30 03:54:48 +08:00
- ConnectionStrings__FeedQueue=UseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://azurite
listentogether.hub:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
- NetPodcastApi__BaseAddress=http://podcast.api
2022-12-06 03:44:58 +08:00
- ConnectionStrings__ListenTogetherDb=Server=podcast.db;Database=ListenTogether;User Id=sa;Password=Pass@word;Encrypt=False
- ConnectionStrings__OrleansStorage=UseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://azurite
2021-11-30 03:54:48 +08:00
ports:
- "5001:80"
storage:
hostname: azurite
ports:
- "10000:10000"
- "10001:10001"
- "10002:10002"
2021-11-30 03:54:48 +08:00
podcast.web:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
- PodcastApi__BaseAddress=http://podcast.api
- ListenTogetherHub=http://listentogether.hub/listentogether
ports:
- "5002:80"
volumes:
podcast-sqldata:
external: false