-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcompose.stg.yml
More file actions
42 lines (39 loc) · 1.02 KB
/
compose.stg.yml
File metadata and controls
42 lines (39 loc) · 1.02 KB
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
services:
cloudflare:
image: "cloudflare/cloudflared:latest"
container_name: "nutfes-finansu-web"
volumes: ["./web/stg:/home/nonroot/.cloudflared"]
command: tunnel run
view:
build:
context: ./
dockerfile: prod.view.Dockerfile
args:
NEXT_PUBLIC_APP_ENV: "stg"
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: ["./finansu.env"]
ports: ["1323:1323"]
environment:
ENV: "production"
RESET_PASSWORD_URL: "https://finansu.nutfes.net/reset_password"
finansu-stg-dozzle-agent:
image: amir20/dozzle:latest
container_name: "dozzle-agent"
command: agent
healthcheck:
test: ["CMD", "/dozzle", "healthcheck"]
interval: 5s
retries: 5
start_period: 5s
start_interval: 5s
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- 7007:7007