From d51308498733633fba66d9b496b8b8b9e9b6943d Mon Sep 17 00:00:00 2001 From: Ezra Jones <82245581+jones013@users.noreply.github.com> Date: Tue, 14 Apr 2026 15:34:26 -0400 Subject: [PATCH] fixed yaml Removed unnecessary build context and updated port syntax in README. --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 3934710..674cafe 100644 --- a/README.md +++ b/README.md @@ -33,10 +33,9 @@ To deploy the calculator on a server, you only need Docker and Docker Compose in ```yaml services: web: - build: . image: ghcr.io/jones013/jack_calculator:latest ports: - - "8888:80" + - 8888:80 restart: unless-stopped ``` @@ -53,7 +52,3 @@ The calculator will then be available at `http://:8888`. **Note on Firewalls**: Ensure that your server's firewall is configured to allow incoming traffic on port 8888. --- - -## Branches - -Use `**main`** or `**user**` for this layout. Maintainer tooling and full docs live on the `**developer**` branch.