Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
88 lines (82 loc) · 1.94 KB

File metadata and controls

88 lines (82 loc) · 1.94 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
services:
proxy:
image: ubuntu/squid:latest
ports:
- "3128:3128"
environment:
- DNS_NAMESERVERS=8.8.8.8 8.8.4.4
volumes:
- ./squid.conf:/etc/squid/squid.conf
networks:
- proxy-net
- internal
tunnel:
image: nginx:alpine
ports:
- "3000:80"
networks:
- internal
- proxy-net
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- keep-frontend
keep-frontend:
# platform: linux/amd64
ports:
- "3000:3000"
extends:
file: ../docker-compose.common.yml
service: keep-frontend-common
image: us-central1-docker.pkg.dev/keephq/keep/keep-ui:0.37.1-console
environment:
- HOSTNAME=0.0.0.0
- API_URL=http://keep-backend:8080
- http_proxy=http://proxy:3128
- https_proxy=http://proxy:3128
- HTTP_PROXY=http://proxy:3128
- HTTPS_PROXY=http://proxy:3128
- npm_config_proxy=http://proxy:3128
- npm_config_https_proxy=http://proxy:3128
- npm_config_strict_ssl=false
- AUTH_TYPE=AZUREAD
- NODE_ENV=development
- KEEP_AZUREAD_TENANT_ID=XXX
- KEEP_AZUREAD_CLIENT_ID=YYY
- KEEP_AZUREAD_CLIENT_SECRET=ZZZ
# volumes:
# - ./keep-ui:/app
# - /app/node_modules
# - /app/.next
depends_on:
- keep-backend
- proxy
networks:
# - proxy-net
- internal
keep-backend:
ports:
- "8080:8080"
extends:
file: ../docker-compose.common.yml
service: keep-backend-common
image: us-central1-docker.pkg.dev/keephq/keep/keep-api
environment:
- AUTH_TYPE=NO_AUTH
volumes:
- ./state:/state
networks:
- proxy-net
- internal
keep-websocket-server:
extends:
file: ../docker-compose.common.yml
service: keep-websocket-server-common
networks:
- internal
networks:
proxy-net:
driver: bridge
internal:
driver: bridge
internal: true
Morty Proxy This is a proxified and sanitized view of the page, visit original site.