mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-24 08:01:04 +00:00
Bind the RSSHub web port through HOST_IP so the 1Panel external access toggle controls the published address. Keep the Browserless sidecar unexposed while declaring an empty ports list, which lets 1Panel populate HOST_IP even when it selects the sidecar service for common parameter injection.
9 lines
162 B
Bash
Executable File
9 lines
162 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if command -v docker-compose >/dev/null 2>&1; then
|
|
docker-compose down --volumes
|
|
else
|
|
docker compose down --volumes
|
|
fi
|