From 293e22961a9c6f04abb55c5d680a0bae9f81c328 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 6 Jan 2026 15:48:18 +0100 Subject: [PATCH] Update docker-compose for production hostname dandelion.nusqool.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change service name from nusqool-staging to nusqool - Update Traefik router hostname from nusqool-staging.jeffemmett.com to dandelion.nusqool.com 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2b871ad..e5c0540 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,12 +1,12 @@ services: - nusqool-staging: + nusqool: build: . - container_name: nusqool-staging + container_name: nusqool restart: unless-stopped labels: - "traefik.enable=true" - - "traefik.http.routers.nusqool-staging.rule=Host(`nusqool-staging.jeffemmett.com`)" - - "traefik.http.services.nusqool-staging.loadbalancer.server.port=3000" + - "traefik.http.routers.nusqool.rule=Host(`dandelion.nusqool.com`)" + - "traefik.http.services.nusqool.loadbalancer.server.port=3000" networks: - traefik-public