-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (31 loc) · 798 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (31 loc) · 798 Bytes
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
version: '3.7'
name: pizza
services:
frontend:
container_name: pizza_frontend
image: nadegamra.azurecr.io/pizza_frontend:1.0
restart: unless-stopped
environment:
- WDS_SOCKET_HOST=127.0.0.1
backend:
container_name: pizza_api
image: nadegamra.azurecr.io/pizza_api:1.0
restart: unless-stopped
environment:
ASPNETCORE_URLS: 'https://+:443;http://+:80'
ASPNETCORE_Kestrel__Certificates__Default__Path: /certs/localhost.crt
ASPNETCORE_Kestrel__Certificates__Default__KeyPath: /certs/localhost.key
working_dir: /src
proxy:
container_name: proxy
image: nadegamra.azurecr.io/pizza_proxy:1.0
build: .
ports:
- 80:80
- 443:443
depends_on:
- frontend
- backend
networks:
default:
name: pizza