From dd9cc42271f5bfb7f9f317f8938188cd744f65ed Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Fri, 13 Jun 2025 17:01:00 -0400 Subject: [PATCH] chore: update port to 54321 --- README.md | 6 ++++-- docker-compose.yml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 53bc717..bf69d94 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,8 @@ docker compose up -d docker compose down ``` +The application will be available at `http://localhost:54321` + #### Using Docker Directly 1. Build the Docker image: @@ -57,14 +59,14 @@ docker build -t pet-picture-queue . ```bash docker run -d \ - -p 5000:5000 \ + -p 54321:5000 \ -v $(pwd)/static/uploads:/app/static/uploads \ -v $(pwd)/pet_pictures.db:/app/pet_pictures.db \ --name pet-picture-queue \ pet-picture-queue ``` -The application will be available at `http://localhost:5000` +The application will be available at `http://localhost:54321` ## Usage diff --git a/docker-compose.yml b/docker-compose.yml index 96c912a..f151960 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: web: build: . ports: - - "5000:5000" + - "54321:5000" volumes: - ./static/uploads:/app/static/uploads - ./pet_pictures.db:/app/pet_pictures.db