Go to file
2025-01-09 11:59:23 +01:00
app Optimized caching and changed from json to yaml 2025-01-09 11:59:23 +01:00
.gitignore Implemented the python draft 2025-01-08 14:59:36 +01:00
Dockerfile Implemented the python draft 2025-01-08 14:59:36 +01:00
LICENSE Initial commit 2020-10-08 15:06:16 +02:00
README.md Optimized caching and changed from json to yaml 2025-01-09 11:59:23 +01:00

Landingpage

Access

http://127.0.0.1:5000

Administrate Docker

Stop and Destroy

docker stop landingpage
docker rm landingpage

Build

docker build -t application-landingpage .

Run

Development

sudo docker run -d -p 5000:5000 --name landingpage -v $(pwd)/app/:/app -e FLASK_APP=app.py -e FLASK_ENV=development application-landingpage

Production

docker run -d -p 5000:5000 --name landingpage application-landingpage

Debug

docker logs -f landingpage