by Devin Yang
(This article was automatically translated.)

Published - 1 year ago ( Updated - 1 year ago )

phpenv php laravel runs HAProxy, and automatically applies for and updates free certification, now let him run Python's fastapi. There is no limit to phpenv, the limit is your idea.😆


1. First, I touch an environment file in the envs directory.

devin@ai:~/phpenv/envs$ touch fastapi_cv2

2. The newly added fastapi_cv2 content is as follows:

DEFAULT=fastapi
PROJECT=cv2
WORKSPACE=fastapi
FOLDER=/home/devin/sd/rembg
FASTAPI_PORT=8001

It is defined here. By default, I use the fastapi.yml file, and I name the project name cv2.
The fastapi.yml file has been built into the latest version of phpenv, and its service name is fastapi.
Through the specification of WORKSPACE, we can directly enter the fastapi container through simple bash and ./console.

3. After completing the second step of setting up the environment file, we can execute ./link to select the environment file. Come and paste it directly to the screen. Maybe you can see it, and you should have a better understanding of how I operate it.


4. Standard process. After we set up the environment file and execute ./link selection, we need to execute ./console build, which is used to create a dedicated image for this project.
If necessary, please adjust your Python version according to your own project needs 。(dockerfiles/Dockerfile-fastapi)
You can also copy a new fastapi.yml file, everything is up to you, php only provides a basic operation method for reference, of course DEFATUL=fastapi should point to your newly created yml file.

./console build

The result is as follows:

5. After the successful build, let’s start it, start it through ./start, and then check it through ./console ps.

./start
./console ps

The actual screen is as follows:

 

6. Remember that in the second step, I have already specified the folder of the Project? FOLDER=/home/devin/sd/rembg, Let's go straight into the container with ./console.
This is where phpenv comes in handy, have you noticed? :)
 

./console

Actual picture:

You should have noticed that it automatically executes source /opt/python/bin/activat for you, and switches to the /app directory.
7. Standard package installation process, let us use pip to install the package.
We can choose a new installation or an existing requirements.txt installation.

pip install -r requirments.txt

The installation is like this, the actual operation screen:

8. We can leave the container through ctrl+d to find out the execution container, because my project is called cv2, so it can be like the following

9. Since we have completed the installation of requirements in the seventh step, we need to commit the Docker container to the image, so that we do not need to reinstall after the next restart.
Simply copy the hash and name in the screen, and you can commit.

結果如下:

10. Restart directly to test to see if the Project will run :)

./restart

The result of the operation is as follows:

Because there is only one container, we can check whether the result of the execution screen is wrong without specifying the service name.

./console logs -f

The result is as follows, well, it looks very normal so far so good:)
Successfully execute Python's fastapi with phpenv.


In this pattern, the port 8000 of his Listen is the connection port in the container. Remember, my environment setting in .env is 8001, so we can access it through 8001 on the host side

Let's test the API, and memorize the picture files

By adding HAProxy settings, we can allow different languages ​​to share the same domain name, but that's another story.
For example, my blog is a PHP environment running Laravel, but the API is fastapi running Python.
 

The test URL is as follows:

https://www.ccc.tc/api/rembg/docs

 

Tags: fastapi phpenv docker

Devin Yang

Feel free to ask me, if you don't get it.:)

No Comment

Post your comment

Login is required to leave comments

Similar Stories


openai,flax,docker

Use the container to run OpenAI's official teaching Python (Flax)

If you log in to the openai website, you can see the official teaching instructions herehttps://beta.openai.com/docs/quickstart/build-your-applicationAPI的KEY的申請, there is a button at the bottom of this page + Create new secret key This article teaches you to use Docker to run the official OpenAI execution environment.

docker

Install Docker and docker-compose with Raspberry Pi

This article briefly introduces how we install docker and docker-compose on Raspberry Pi.

docker

Wenchat about the evolution history of my network

Hear about the evolution of my network. My GCP costs $46.35 per month, and the current free trial balance is $111.05, I've almost spent $300, and I'm about to move back to a self-managed host.