bible_stories/Readme.md

23 lines
694 B
Markdown
Raw Normal View History

2024-03-07 22:05:00 +00:00
# Bible Stories
2024-03-08 15:20:11 +00:00
Bible stories is an idea, based on ``black stories``.
2024-03-07 22:05:00 +00:00
This is a simple Flask application that can be run in a Docker container.
## Prerequisites
You need to have Docker installed on your machine. You can download Docker [here](https://www.docker.com/products/docker-desktop).
## Building the Docker Image
To build the Docker image, navigate to the project root directory (where the Dockerfile is located) in your terminal and run the following command:
```bash
2024-03-07 22:11:31 +00:00
sudo docker build -t bible-stories .
2024-03-07 22:05:00 +00:00
```
## Deploy
```bash
2024-03-07 22:11:31 +00:00
sudo docker run -p 4000:80 bible-stories
2024-03-07 22:05:00 +00:00
```
This will start the Docker container and map port 80 in the container to port 4000 on your host machine.