To host an application on Container Hosting Python
, you must complete the following three steps.
If your project files are in a Git repository, then installing the utility is not necessary, since you can run the project from the browser.
If you installed the conhos utility earlier, then simply proceed to the next step. If not installed, then use Instructions to install.
If your project files are in a Git repository, you can create a configuration file from your browser.
Configuration file for creating the Python
service in Container Hosting. More details in Configuration File.
Check the current version of the
Python
container in the official Python repository
name: my-python-project
services:
python0:
image: python
size: mili
active: true
pwd: examples/python
exclude:
- venv
version: latest
command: pip install -r requirements.txt && python main.py
ports:
- port: 3000
type: proxy
environment:
- PORT=3000
To upload files to the cloud and run services in containers, run the command:
conhos deploy
Continue studying