-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (27 loc) · 856 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (27 loc) · 856 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
services:
service_5000:
build:
context: ./flask_app
dockerfile: Dockerfile
ports:
- "5000:5000"
networks:
- my_network
# Set environment variables for AWS access. The Access key is extracted from the user here - https://us-east-1.console.aws.amazon.com/iam/home?region=us-east-1#/users/details/User_For_Flask_Server_ACCESS?section=permissions
environment:
- AWS_ACCESS_KEY_ID=AKIA5YMGV6ADMFKQOX7K
- AWS_SECRET_ACCESS_KEY=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
service_5001:
build:
context: ./WhisperX_API_Setup
dockerfile: Dockerfile
ports:
- "5001:5001"
networks:
- my_network
environment:
- AWS_ACCESS_KEY_ID=AKIA5YMGV6ADMFKQOX7K
- AWS_SECRET_ACCESS_KEY=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
networks:
my_network:
driver: bridge