docker-compose geadded, requirements ausgebessert

This commit is contained in:
2024-01-20 14:29:15 +01:00
parent 3b2ab9b45d
commit 32e726ee63
2 changed files with 23 additions and 1 deletions

21
docker-compose.yaml Normal file
View File

@@ -0,0 +1,21 @@
version: "3"
services:
flask:
image: flask:latest
container_name: Flask
environment:
- TZ=Europe/Vienna
- VIRTUAL_HOST=glatzenberatung.patha.at
- LETSENCRYPT_EMAIL=patha99@yahoo.de
- LETSENCRYPT_HOST=glatzenberatung.patha.at
networks:
- general
ports:
- "5000:5000"
restart: always
networks:
general:
external: true
name: general

View File

@@ -1 +1,2 @@
Flask==3.0.0 Flask==3.0.0
Unidecode==1.3.8