forked from microsoft/dotnet-podcasts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (43 loc) · 1.16 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
version: '3.4'
services:
podcast.api:
image: ${DOCKER_REGISTRY-}podcastapi
build:
context: .
dockerfile: src/Services/Podcasts/Podcast.API/Dockerfile
depends_on:
- podcast.db
- storage
podcast.updater.worker:
image: ${DOCKER_REGISTRY-}podcastupdaterworker
build:
context: .
dockerfile: src/Services/Podcasts/Podcast.Updater.Worker/Dockerfile
depends_on:
- podcast.db
podcast.db:
image: mcr.microsoft.com/mssql/server:2019-latest
listentogether.hub:
image: ${DOCKER_REGISTRY-}listentogetherhub
build:
context: .
dockerfile: src/Services/ListenTogether/ListenTogether.Hub/Dockerfile
depends_on:
- podcast.api
podcast.ingestion.worker:
image: ${DOCKER_REGISTRY-}podcastingestionworker
build:
context: .
dockerfile: src/Services/Podcasts/Podcast.Ingestion.Worker/Dockerfile
depends_on:
- podcast.db
- storage
podcast.web:
image: ${DOCKER_REGISTRY-}podcastweb
build:
context: .
dockerfile: src/Web/Server/Dockerfile
depends_on:
- podcast.api
storage:
image: mcr.microsoft.com/azure-storage/azurite:latest