-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yaml
47 lines (44 loc) · 1.06 KB
/
docker-compose.yaml
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
version: '3'
services:
next-basedosdados:
container_name: nextjs-basedosdados
build:
context: next
dockerfile: Dockerfile
args:
- NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
- NEXT_PUBLIC_DOMAIN=basedosdados.org
env_file:
- .env
environment:
- NEXT_PUBLIC_DOMAIN=basedosdados.org
ports:
- ${NEXT_PORT}:3000
next-databasis:
container_name: nextjs-databasis
build:
context: next
dockerfile: Dockerfile
args:
- NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
- NEXT_PUBLIC_DOMAIN=data-basis.org
env_file:
- .env
environment:
- NEXT_PUBLIC_DOMAIN=data-basis.org
ports:
- "3001:3000"
next-basedelosdatos:
container_name: nextjs-basedelosdatos
build:
context: next
dockerfile: Dockerfile
args:
- NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
- NEXT_PUBLIC_DOMAIN=basedelosdatos.org
env_file:
- .env
environment:
- NEXT_PUBLIC_DOMAIN=basedelosdatos.org
ports:
- "3002:3000"