Update README.md
This commit is contained in:
@@ -61,15 +61,16 @@ Questa applicazione utilizza Quart come web framework asincrono e Hypercorn come
|
|||||||
services:
|
services:
|
||||||
quartapp:
|
quartapp:
|
||||||
image: python:3.10-slim
|
image: python:3.10-slim
|
||||||
container_name: herselquart
|
container_name: quartapp
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:5000:5000"
|
- "127.0.0.1:5000:5000"
|
||||||
|
restart: always
|
||||||
command: >
|
command: >
|
||||||
sh -c "
|
sh -c "
|
||||||
apt-get update &&
|
apt-get update &&
|
||||||
apt-get install -y git &&
|
apt-get install -y git &&
|
||||||
git clone https://github.com/BluLupo/hersel.it.git /app &&
|
[ -d /app/.git ] || git clone https://github.com/BluLupo/hersel.it.git /app &&
|
||||||
pip install --no-cache-dir -r requirements.txt &&
|
pip install --no-cache-dir -r requirements.txt &&
|
||||||
hypercorn -c hypercorn_config.toml app:app
|
hypercorn -c hypercorn_config.toml app:app
|
||||||
"
|
"
|
||||||
|
|||||||
Reference in New Issue
Block a user