chore: rollback image name
rabbitprincess committed
Apr 6, 2026 at 21:33 UTC
94e413cccfca3b70e5f46795b5bc1ca4c62506f0
7 files changed
+7
-7
.github/workflows/cd.yml
+1
-1
@@ -7,7 +7,7 @@ on:
7
8
env:
9
REGISTRY: ghcr.io
10
- IMAGE_NAME: gosuda/portal-tunnel
10
+ IMAGE_NAME: gosuda/portal
11
PLATFORMS: linux/amd64,linux/arm64
12
13
concurrency:
docker-compose.yml
+1
-1
@@ -1,6 +1,6 @@
1
services:
2
portal:
3
- image: ghcr.io/gosuda/portal-tunnel:latest
3
+ image: ghcr.io/gosuda/portal:latest
4
build:
5
context: .
6
dockerfile: Dockerfile
docs/deployment.md
+1
-1
@@ -405,7 +405,7 @@ To persist this across reboots, add the values to `/etc/sysctl.conf` or a file i
405
406
## 6. Auto-Update
407
408
-Automatically redeploy when a new `ghcr.io/gosuda/portal-tunnel:latest` image is pushed.
408
+Automatically redeploy when a new `ghcr.io/gosuda/portal:latest` image is pushed.
409
410
### 6.1 Deploy script
411
docs/examples/nginx-proxy-multi-service/docker-compose.yaml
+1
-1
@@ -57,7 +57,7 @@ services:
57
# If you enable UDP, expose SNI_PORT/udp and MIN_PORT-MAX_PORT/udp as well.
58
# If you enable raw TCP transport, expose MIN_PORT-MAX_PORT/tcp as well.
59
portal:
60
- image: ghcr.io/gosuda/portal-tunnel:latest
60
+ image: ghcr.io/gosuda/portal:latest
61
container_name: portal
62
ports:
63
- "${API_PORT:-4017}:${API_PORT:-4017}/tcp"
docs/examples/nginx-proxy/deploy_portal.sh
+1
-1
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
set -e
3
4
-docker pull ghcr.io/gosuda/portal-tunnel:latest
4
+docker pull ghcr.io/gosuda/portal:latest
5
docker compose down portal
6
docker compose up -d portal
7
bash nginx_deploy.sh
docs/examples/nginx-proxy/docker-compose.yaml
+1
-1
@@ -50,7 +50,7 @@ services:
50
# If you enable UDP, expose SNI_PORT/udp and MIN_PORT-MAX_PORT/udp as well.
51
# If you enable raw TCP transport, expose MIN_PORT-MAX_PORT/tcp as well.
52
portal:
53
- image: ghcr.io/gosuda/portal-tunnel:latest
53
+ image: ghcr.io/gosuda/portal:latest
54
container_name: portal
55
ports:
56
- "${API_PORT:-4017}:${API_PORT:-4017}/tcp"
docs/examples/nginx-proxy/watch_and_deploy.sh
+1
-1
@@ -1,7 +1,7 @@
1
#!/usr/bin/env bash
2
set -euo pipefail
3
4
-IMAGE="ghcr.io/gosuda/portal-tunnel:latest"
4
+IMAGE="ghcr.io/gosuda/portal:latest"
5
DIGEST_FILE="${DIGEST_FILE:-.portal_image_digest}"
6
INTERVAL="${INTERVAL:-60}"
7
DEPLOY_SCRIPT="${DEPLOY_SCRIPT:-deploy_portal.sh}"