Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docker-compose-restfulbooker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# To execute this docker-compose yml file use `docker-compose -f docker-compose-restfulbooker.yml up -d`
# Add the `-d` flag at the end for detached execution
# To stop the execution, hit Ctrl+C, and then `docker-compose -f docker-compose-restfulbooker.yml down`
version: "3"
services:
restful-booker:
image: mwinteringham/restfulbooker
ports:
- 3001:3001
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class BaseTest {
public void setupBase () {
manager = new RequestManager ();
manager.createPlaywright ();
final String baseUrl = "https://restful-booker.herokuapp.com/";
final String baseUrl = "http://localhost:3001";
Map<String, String> headers = new HashMap<> ();
headers.put ("content-type", "application/json");
headers.put ("Accept", "application/json");
Expand Down