File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
services :
4
4
# first instance of the api server
5
5
api1 :
6
- container_name : api-1
6
+ container_name : gallery- api-core -1
7
7
env_file :
8
8
- ../config/env/.env
9
9
environment :
@@ -23,7 +23,7 @@ services:
23
23
24
24
# second instance of the api server
25
25
api2 :
26
- container_name : api-2
26
+ container_name : gallery- api-core -2
27
27
env_file :
28
28
- ../config/env/.env
29
29
environment :
Original file line number Diff line number Diff line change 1
1
# For development purposes, the dev docker file simply mounts the codebase with hot-reloading
2
- FROM node:20-alpine
2
+ FROM node:24-slim
3
3
4
4
# Maintainer information
5
5
LABEL org.opencontainers.image.authors="Tan Jin (tjtanjin)"
Original file line number Diff line number Diff line change 1
1
import { Request , Response } from 'express' ;
2
2
3
3
// todo: maybe build a separate lightweight status service as well
4
+ // should also consider rag service
4
5
export const getHealthStatus = ( req : Request , res : Response ) => {
5
6
res . status ( 200 ) . json ( { status : 'healthy' } ) ;
6
7
} ;
You can’t perform that action at this time.
0 commit comments