Update docker-compose.yml to use Docker Hub image ryderjj89/esv-bible:latest

This commit is contained in:
Ryderjj89
2025-09-13 12:16:25 -04:00
parent 13c93879c0
commit 0bcd267741
2 changed files with 7 additions and 6 deletions

View File

@@ -34,8 +34,8 @@ esv-bible/
## Setup
1. Clone this repository
2. The ESV Bible data will be automatically downloaded during Docker build from the GitHub repository
3. Run `docker-compose up --build`
2. Run `docker-compose up` (uses pre-built image from Docker Hub)
3. The ESV Bible data is included in the Docker image
## Usage
@@ -79,12 +79,12 @@ npm start
## Docker Deployment
Build and run with Docker Compose:
Run with Docker Compose using pre-built Docker Hub image:
```bash
docker-compose up --build
docker-compose up
```
The Bible data is stored in a persistent Docker volume named `bible_data` for efficient storage and updates.
The application uses the `ryderjj89/esv-bible:latest` image from Docker Hub. The Bible data is included in the Docker image and stored in a persistent Docker volume named `bible_data` for efficient storage and updates.
## Data Source

View File

@@ -1,6 +1,7 @@
services:
esv-bible:
build: .
image: ryderjj89/esv-bible:latest
container_name: esv-bible
ports:
- "3000:3000"
volumes: