From 9893ed0bccff70c86165ce1e4b799196c342344b Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 15 Apr 2025 15:53:19 -0400 Subject: [PATCH] fix image names, rename map-web to just map --- .gitea/workflows/build.yml | 6 +++--- docker-compose.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index c554b0c..04c08f9 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -13,11 +13,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Build web app image - run: docker build -f webapp/Dockerfile -t git.arinity.org/ctmesh:map-web:latest . + run: docker build -f webapp/Dockerfile -t git.arinity.org/ctmesh/map:latest . - name: Build mqtt listener image - run: docker build -f mqtt/Dockerfile -t git.arinity.org/ctmesh:map-mqtt:latest . + run: docker build -f mqtt/Dockerfile -t git.arinity.org/ctmesh/map-mqtt:latest . - name: Build cli image - run: docker build -f cli/Dockerfile -t git.arinity.org/ctmesh:map-cli:latest . + run: docker build -f cli/Dockerfile -t git.arinity.org/ctmesh/map-cli:latest . - name: Push images run: | docker push git.arinity.org/ctmesh:map-web:latest diff --git a/docker-compose.yml b/docker-compose.yml index ee883ac..246cd49 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,7 @@ services: # runs the web map ui meshtastic-map: container_name: meshtastic-map - image: git.arinity.org/ctmesh/map-web:latest + image: git.arinity.org/ctmesh/map:latest depends_on: database: condition: service_healthy