-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (40 loc) · 823 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (40 loc) · 823 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
version: '1.8'
services:
proxy:
container_name: proxy
image: nginx
depends_on:
- frontend
ports:
- 80:80
- 443:443
volumes:
- ./proxy/templates:/etc/nginx/templates
- ./proxy/cert:/etc/certs
network_mode: bridge
extra_hosts:
- "host.docker.internal:host-gateway"
frontend:
container_name: atlanta-domains
image: atlanta-domains
build:
context: .
env_file:
- .env
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- 3000:3000
frontend-sepolia:
container_name: atlanta-domains-sepolia
image: atlanta-domains
build:
context: .
depends_on:
- frontend
env_file:
- .env.dev
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- 3001:3000