feat(ci): Frontend supports Docker build. (#580)
This commit is contained in:
@@ -349,12 +349,12 @@ services:
|
||||
restart: always
|
||||
container_name: coze-server
|
||||
env_file: *env_file
|
||||
environment:
|
||||
LISTEN_ADDR: 0.0.0.0:8888
|
||||
# environment:
|
||||
# LISTEN_ADDR: 0.0.0.0:8888
|
||||
networks:
|
||||
- coze-network
|
||||
ports:
|
||||
- '8888:8888'
|
||||
# - '8888:8888'
|
||||
- '8889:8889'
|
||||
volumes:
|
||||
- .env:/app/.env
|
||||
@@ -371,6 +371,25 @@ services:
|
||||
condition: service_healthy
|
||||
milvus:
|
||||
condition: service_healthy
|
||||
command: ['/app/opencoze']
|
||||
|
||||
coze-frontend:
|
||||
build:
|
||||
context: ..
|
||||
dockerfile: frontend/Dockerfile
|
||||
container_name: coze-frontend
|
||||
restart: always
|
||||
ports:
|
||||
- "8888:80"
|
||||
# - "443:443" # SSL port (uncomment if using SSL)
|
||||
volumes:
|
||||
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro # Main nginx config
|
||||
- ./nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf:ro # Proxy config
|
||||
# - ./nginx/ssl:/etc/nginx/ssl:ro # SSL certificates (uncomment if using SSL)
|
||||
depends_on:
|
||||
- coze-server
|
||||
networks:
|
||||
- coze-network
|
||||
|
||||
networks:
|
||||
coze-network:
|
||||
|
||||
65
docker/nginx/conf.d/default.conf
Normal file
65
docker/nginx/conf.d/default.conf
Normal file
@@ -0,0 +1,65 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
|
||||
# Static resources
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
index index.html index.htm;
|
||||
autoindex on;
|
||||
autoindex_exact_size off;
|
||||
autoindex_localtime on;
|
||||
}
|
||||
|
||||
# API proxy
|
||||
location /api/ {
|
||||
proxy_pass http://coze-server:8888;
|
||||
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
# SSL/TLS settings
|
||||
proxy_ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
|
||||
proxy_ssl_verify off;
|
||||
}
|
||||
}
|
||||
|
||||
# if you want to use https, you can uncomment the following code
|
||||
# server {
|
||||
# listen 443 ssl;
|
||||
# server_name _;
|
||||
|
||||
# ssl_certificate /etc/nginx/ssl/pem;
|
||||
# ssl_certificate_key /etc/nginx/ssl/key;
|
||||
# ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
|
||||
# ssl_prefer_server_ciphers on;
|
||||
# ssl_session_cache shared:SSL:10m;
|
||||
# ssl_session_timeout 10m;
|
||||
|
||||
# # Static resources
|
||||
# location / {
|
||||
# root /usr/share/nginx/html;
|
||||
# try_files $uri $uri/ /index.html;
|
||||
# index index.html index.htm;
|
||||
# autoindex on;
|
||||
# autoindex_exact_size off;
|
||||
# autoindex_localtime on;
|
||||
# }
|
||||
|
||||
# # API proxy
|
||||
# location /api/ {
|
||||
# proxy_pass https://coze-server:8888;
|
||||
|
||||
# proxy_set_header Host $host;
|
||||
# proxy_set_header X-Real-IP $remote_addr;
|
||||
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
# proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
# # SSL/TLS settings
|
||||
# proxy_ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
|
||||
# proxy_ssl_verify off;
|
||||
# }
|
||||
# }
|
||||
14
docker/nginx/nginx.conf
Normal file
14
docker/nginx/nginx.conf
Normal file
@@ -0,0 +1,14 @@
|
||||
worker_processes 1;
|
||||
events { worker_connections 1024; }
|
||||
|
||||
http {
|
||||
include mime.types;
|
||||
default_type application/octet-stream;
|
||||
sendfile on;
|
||||
keepalive_timeout 65;
|
||||
|
||||
# setting client request body size limit - 0 means no limit
|
||||
client_max_body_size 0;
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
}
|
||||
0
docker/nginx/ssl/.gitkeep
Normal file
0
docker/nginx/ssl/.gitkeep
Normal file
Reference in New Issue
Block a user