mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-01-15 19:23:58 +01:00
38 lines
702 B
Markdown
38 lines
702 B
Markdown
# Landingpage
|
|
|
|
## Access
|
|
### Locale
|
|
http://127.0.0.1:5000
|
|
|
|
|
|
## Administrate Docker
|
|
### Stop and Destroy
|
|
```bash
|
|
docker stop landingpage
|
|
docker rm landingpage
|
|
```
|
|
|
|
### Build
|
|
```bash
|
|
docker build -t application-landingpage .
|
|
```
|
|
|
|
### Run
|
|
|
|
#### Run Development Environment
|
|
```bash
|
|
docker run -d -p 5000:5000 --name landingpage -v $(pwd)/app/:/app -e FLASK_APP=app.py -e FLASK_ENV=development application-landingpage
|
|
```
|
|
|
|
#### Run Production Environment
|
|
```bash
|
|
docker run -d -p 5000:5000 --name landingpage application-landingpage
|
|
```
|
|
|
|
### Debug
|
|
```bash
|
|
docker logs -f landingpage
|
|
```
|
|
## Author
|
|
This software was created from [Kevin Veen-Birkenbach](https://www.veen.world/) with the help of [ChatGPT]()
|