-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcompose.prod.yml
More file actions
38 lines (34 loc) · 973 Bytes
/
compose.prod.yml
File metadata and controls
38 lines (34 loc) · 973 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
services:
cloudflare:
image: "cloudflare/cloudflared:latest"
container_name: "nutfes-finansu-web"
volumes: ["./web/prod:/home/nonroot/.cloudflared"]
command: tunnel run
view:
build:
context: ./
dockerfile: prod.view.Dockerfile
args:
- NEXT_PUBLIC_APP_ENV=${NEXT_PUBLIC_APP_ENV}
- NEXT_PUBLIC_MINIO_ENDPONT=${NEXT_PUBLIC_MINIO_ENDPONT}
container_name: "nutfes-finansu-view"
ports: ["3000:3000"]
depends_on: ["api"]
api:
build:
context: ./
dockerfile: prod.api.Dockerfile
container_name: "nutfes-finansu-api"
env_file: ["./.env"]
ports: ["1323:1323"]
environment:
ENV: "production"
RESET_PASSWORD_URL: "https://finansu.nutfes.net/reset_password"
finansu-prd-dozzle-agent:
image: amir20/dozzle:latest
container_name: "dozzle-agent"
command: agent
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- 7007:7007