-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathdocker-compose.workers.yml
More file actions
37 lines (34 loc) · 978 Bytes
/
docker-compose.workers.yml
File metadata and controls
37 lines (34 loc) · 978 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
33
34
35
36
37
networks:
nsse-network:
external: true
services:
nsse.invoice.internal:
container_name: nsse.invoice.internal
image: nsse/invoice
ports:
- 5004:443
build:
context: .
dockerfile: src/workers/NotSoSimpleEcommerce.InvoiceGenerator/Dockerfile
env_file:
- ./.env
volumes:
- ${CERTIFICATES_HOST_PATH}:${CERTIFICATES_CONTAINER_PATH}
- ${AWS_CREDENTIALS_HOST_PATH}:${AWS_CREDENTIALS_CONTAINER_PATH}
networks:
- nsse-network
nsse.notificator.internal:
container_name: nsse.notificator.internal
image: nsse/notificator
ports:
- 5005:443
build:
context: .
dockerfile: src/workers/NotSoSimpleEcommerce.Notificator/Dockerfile
env_file:
- ./.env
volumes:
- ${CERTIFICATES_HOST_PATH}:${CERTIFICATES_CONTAINER_PATH}
- ${AWS_CREDENTIALS_HOST_PATH}:${AWS_CREDENTIALS_CONTAINER_PATH}
networks:
- nsse-network