Skip to content

Commit b39fd00

Browse files
committed
Minor change
1 parent 9cc9c8c commit b39fd00

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

examples/spring-boot-demo/requirements/agile/US-001-tasks-film-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Based on the Gherkin scenarios from `US-001-film-query.feature`:
192192
- **Technical flow respects sequence diagram interactions** from UML design
193193
- **JaCoCo enforces 80% minimum code coverage** as quality gate
194194
- **TestContainers provide isolated testing environment** for database integration tests
195-
- **Database:** Using Sakila PostgreSQL database with Docker: `docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d "frantiseks/postgres-sakila"`
195+
- **Database:** Using Sakila PostgreSQL database with Docker: `docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d "sakiladb/postgres"`
196196
- **Build command:** `./mvnw clean verify` to run all tests with coverage validation
197197

198198
---

examples/spring-boot-demo/requirements/agile/US-001-user-story-film-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ WHERE title LIKE 'A%'
8989
- **Expected Result Count**: 46 films
9090
- **Docker Command**:
9191
```bash
92-
docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d "frantiseks/postgres-sakila"
92+
docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d "sakiladb/postgres"
9393
```
9494

9595
## Implementation Technologies

examples/spring-boot-demo/requirements/original/README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@ WHERE title LIKE 'A%'
1111
**Note:** The query returns 46 rows.
1212

1313
```bash
14-
docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d "frantiseks/postgres-sakila"
15-
mvn spring-boot:run -pl spring-boot-jdbc
16-
mvn spring-boot:run -pl spring-boot-jooq
17-
mvn spring-boot:run -pl spring-data-jdbc
18-
mvn spring-boot:run -pl spring-data-jpa
14+
docker run -e POSTGRES_PASSWORD=sakila --rm --name sakiladb -p 5432:5432 -d "sakiladb/postgres"
15+
./mvnw spring-boot:run
1916
curl http://localhost:8080/api/v1/films
2017
docker stop sakiladb
2118
```

0 commit comments

Comments
 (0)