mirror of
https://github.com/immich-app/immich.git
synced 2024-12-22 01:47:08 +02:00
infra: switch port to 3003 for machine learning container (#290)
* infra: switch port to 3003 for machine learning container fixes #289 * Changed port of machine-learning-endpoint to match with new port Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
parent
663f12851e
commit
c071e64a7e
@ -5,7 +5,7 @@ import { Logger } from '@nestjs/common';
|
|||||||
async function bootstrap() {
|
async function bootstrap() {
|
||||||
const app = await NestFactory.create(AppModule);
|
const app = await NestFactory.create(AppModule);
|
||||||
|
|
||||||
await app.listen(3001, () => {
|
await app.listen(3003, () => {
|
||||||
if (process.env.NODE_ENV == 'development') {
|
if (process.env.NODE_ENV == 'development') {
|
||||||
Logger.log(
|
Logger.log(
|
||||||
'Running Immich Machine Learning in DEVELOPMENT environment',
|
'Running Immich Machine Learning in DEVELOPMENT environment',
|
||||||
|
@ -93,7 +93,7 @@ export class MetadataExtractionProcessor {
|
|||||||
async tagImage(job: Job) {
|
async tagImage(job: Job) {
|
||||||
const { asset }: { asset: AssetEntity } = job.data;
|
const { asset }: { asset: AssetEntity } = job.data;
|
||||||
|
|
||||||
const res = await axios.post('http://immich-machine-learning:3001/image-classifier/tag-image', {
|
const res = await axios.post('http://immich-machine-learning:3003/image-classifier/tag-image', {
|
||||||
thumbnailPath: asset.resizePath,
|
thumbnailPath: asset.resizePath,
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -113,7 +113,7 @@ export class MetadataExtractionProcessor {
|
|||||||
try {
|
try {
|
||||||
const { asset }: { asset: AssetEntity } = job.data;
|
const { asset }: { asset: AssetEntity } = job.data;
|
||||||
|
|
||||||
const res = await axios.post('http://immich-machine-learning:3001/object-detection/detect-object', {
|
const res = await axios.post('http://immich-machine-learning:3003/object-detection/detect-object', {
|
||||||
thumbnailPath: asset.resizePath,
|
thumbnailPath: asset.resizePath,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user