-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (44 loc) · 848 Bytes
/
docker-compose.yml
File metadata and controls
48 lines (44 loc) · 848 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
38
39
40
41
42
43
44
45
46
47
48
version: '3.8'
services:
copilot-api:
env_file:
- .env
build:
context: .
dockerfile: Dockerfile.copilot.fromrepo
expose:
- "5001"
networks:
- copilot-network
restart: unless-stopped
verifier:
env_file:
- .env
build:
context: .
dockerfile: verifier.Dockerfile
expose:
- "5002"
volumes:
- ${API_KEYS_FILE_HOST}:${API_KEYS_FILE_CONTAINER}:ro
networks:
- copilot-network
restart: unless-stopped
nginx:
env_file:
- .env
build:
context: .
dockerfile: Dockerfile.nginx
ports:
- "5000:5000"
volumes:
- ${HOST_CERTS_DIR}:/etc/nginx/certs:ro
depends_on:
- copilot-api
networks:
- copilot-network
restart: unless-stopped
networks:
copilot-network:
driver: bridge