minimal fix
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 6m18s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 6m18s
This commit is contained in:
@@ -22,8 +22,9 @@ services:
|
||||
volumes:
|
||||
- n8n_data:/home/node/.n8n
|
||||
- /srv/downloads:/music
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
restart: unless-stopped
|
||||
network_mode: "host"
|
||||
|
||||
volumes:
|
||||
n8n_data:
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
SOCKS_HOST=${SOCKS_IP:-192.168.31.240}
|
||||
|
||||
# Wait for SOCKS proxy to be ready
|
||||
echo "Waiting for SOCKS proxy..."
|
||||
until nc -z ${SOCKS_IP} 1080; do
|
||||
until nc -z "$SOCKS_HOST" 1080; do
|
||||
echo "SOCKS proxy not ready yet, waiting..."
|
||||
sleep 5
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user