-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
48 lines (44 loc) · 954 Bytes
/
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
version: '3.8'
services:
web:
container_name: web
build:
context: ./ECommerce.Web
dockerfile: Dockerfile
ports:
- "5173:5173"
networks:
- e_comm_net
depends_on:
- api
api:
container_name: api
build:
context: .
dockerfile: ECommerce.API/Dockerfile
environment:
- ConnectionStrings__PostgreSqlConnection=${POSTGRES_CONNECTION_STRING}
- AppSettings__Issuer=${ISSUER}
- AppSettings__Audience=${AUDIENCE}
- AppSettings__Secret=${APP_SECRET}
ports:
- "8080:8080"
networks:
- e_comm_net
depends_on:
- database
database:
container_name: database
image: postgres:latest
restart: always
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
ports:
- "6666:5432"
networks:
- e_comm_net
networks:
e_comm_net:
driver: bridge