OBrink / DECIMER.ai

This repository contains the code for https://decimer.ai
MIT License
35 stars 8 forks source link

How to run the image directly #78

Closed dreamfly999 closed 10 months ago

dreamfly999 commented 10 months ago

Thank you for developing such a successful web page and I successfully localized DECIMER.ai, but because the machine restarted unexpectedly, how to directly start the image, I used the following command line, but it did not work: docker run -d --name decimerai-supervisor-2 app docker run -d --name decimerai-app-2 app docker run -d --name decimerai-nginx-4 nginx:alpine

The program running in the background of docker is shown as follows: image

OBrink commented 10 months ago

Hey @dreamfly999,

After having built the app using docker-compose up --build -d once, you can just run the same command without the --build flag: docker-compose up -d.

Kind regards, Otto

dreamfly999 commented 10 months ago

Ok, thank you very much