Skip to content

Commit 444ae10

Browse files
committed
add seq-ui to docker -compose
1 parent 04615f7 commit 444ae10

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

deployment/docker/compose-cluster.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ services:
3636
- "5556:5556" # Default gRPC port
3737
- "5557:5557" # Default debug port
3838
command: --config config.yaml
39-
39+
seq-ui-fe:
40+
image: ghcr.io/ozontech/seq-ui-fe:latest
41+
ports:
42+
- "5173:80"
4043
volumes:
4144
seqdbdata: {}

deployment/docker/compose-single.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,5 @@ services:
1616
stdin_open: true
1717
tty: true
1818
restart: unless-stopped
19-
seq-ui:
20-
image: ghcr.io/ozontech/seq-ui:latest
21-
volumes:
22-
- ./config.seq-ui.yaml:/seq-ui/config.yaml
23-
ports:
24-
- "5555:5555" # Default HTTP port
25-
- "5556:5556" # Default gRPC port
26-
- "5557:5557" # Default debug port
27-
command: --config config.yaml
28-
2919
volumes:
3020
seqdbdata: {}

deployment/docker/config.seq-ui.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@ server:
22
http_addr: "0.0.0.0:5555"
33
grpc_addr: "0.0.0.0:5556"
44
debug_addr: "0.0.0.0:5557"
5+
cors:
6+
allowed_headers:
7+
- Content-Type
8+
- Authorization
9+
allowed_methods:
10+
- HEAD
11+
- GET
12+
- POST
13+
- PATCH
14+
- DELETE
15+
allowed_origins:
16+
- '*'
17+
max_age: 300
518
clients:
619
seq_db_addrs:
720
- "seq-db-proxy:9004"

0 commit comments

Comments
 (0)