git updates
This commit is contained in:
+14
-1
@@ -40,4 +40,17 @@ docker tag hello-world gitea.skalas.org/jskala/test:latest
|
||||
docker push gitea.skalas.org/jskala/test:latest
|
||||
```
|
||||
|
||||
After enabling packages, your workflow should work!
|
||||
After enabling packages, your workflow should work!
|
||||
|
||||
## 5. Performance tip: Use local network for same-host setups
|
||||
|
||||
If your runner and Gitea are on the same host, use the local IP to avoid Cloudflare tunnel overhead:
|
||||
|
||||
```bash
|
||||
# Much faster for same-host setups
|
||||
docker login 192.168.253.221:3000
|
||||
docker tag hello-world 192.168.253.221:3000/jskala/test:latest
|
||||
docker push 192.168.253.221:3000/jskala/test:latest
|
||||
```
|
||||
|
||||
This bypasses the tunnel completely and should be very fast!
|
||||
Reference in New Issue
Block a user