You've already forked DataMate
feat: Labeling Frontend adaptations + Backend build and deploy + Logging improvement (#55)
* feat: Front-end data annotation page adaptation to the backend API. * feat: Implement labeling configuration editor and enhance annotation task creation form * feat: add python backend build and deployment; add backend configuration for Label Studio integration and improve logging setup * refactor: remove duplicate log configuration
This commit is contained in:
@@ -7,6 +7,20 @@ server {
|
||||
|
||||
client_max_body_size 1024M;
|
||||
|
||||
location /api/synthesis/ {
|
||||
proxy_pass http://datamate-backend-python:18000/api/synthesis/;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
}
|
||||
|
||||
location /api/annotation/ {
|
||||
proxy_pass http://datamate-backend-python:18000/api/annotation/;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
}
|
||||
|
||||
location /api/ {
|
||||
proxy_pass http://datamate-backend:8080/api/;
|
||||
proxy_set_header Host $host;
|
||||
|
||||
@@ -15,6 +15,22 @@ services:
|
||||
depends_on:
|
||||
- datamate-database
|
||||
|
||||
# 1) backend (Python)
|
||||
datamate-backend-python:
|
||||
container_name: datamate-backend-python
|
||||
image: datamate-backend-python
|
||||
restart: on-failure
|
||||
privileged: true
|
||||
environment:
|
||||
- log_level=DEBUG
|
||||
volumes:
|
||||
- dataset_volume:/dataset
|
||||
- flow_volume:/flow
|
||||
- log_volume:/var/log/datamate
|
||||
networks: [ datamate ]
|
||||
depends_on:
|
||||
- datamate-database
|
||||
|
||||
# 2) frontend(NodePort 30000)
|
||||
datamate-frontend:
|
||||
container_name: datamate-frontend
|
||||
@@ -28,6 +44,7 @@ services:
|
||||
networks: [ datamate ]
|
||||
depends_on:
|
||||
- datamate-backend
|
||||
- datamate-backend-python
|
||||
|
||||
# 3) database
|
||||
datamate-database:
|
||||
@@ -47,6 +64,8 @@ services:
|
||||
- ../../../scripts/db:/docker-entrypoint-initdb.d
|
||||
- ./utf8.cnf:/etc/mysql/conf.d/utf8.cnf:ro
|
||||
- database_log_volume:/var/log/datamate/database
|
||||
ports:
|
||||
- "3306:3306"
|
||||
networks: [ datamate ]
|
||||
|
||||
# 3) runtime
|
||||
|
||||
Reference in New Issue
Block a user