'searxng' removed from services

This commit is contained in:
2025-03-06 23:05:07 +00:00
parent ce8d530592
commit 60b9938484
8 changed files with 0 additions and 180 deletions

19
main.sh
View File

@ -55,7 +55,6 @@ check_docker_compose() {
generate_env_files() {
cp --update=none ./gitea/.env.example ./gitea/.env
cp --update=none ./searxng/.env.example ./searxng/.env
cp --update=none ./sftpgo/.env.example ./sftpgo/.env
cp --update=none ./vaultwarden/.env.example ./vaultwarden/.env
cp --update=none ./wg_easy/.env.example ./wg_easy/.env
@ -87,15 +86,6 @@ start_services() {
exit 1
fi
echo "Starting searxng..."
$DOCKER_COMPOSE_COMMAND -f ./searxng/docker-compose.yml up -d
if [ $? -eq 0 ]; then
print_success "Searxng started successfully."
else
print_error "failed to start Searxng!"
exit 1
fi
echo "Starting sftpgo..."
$DOCKER_COMPOSE_COMMAND -f ./sftpgo/docker-compose.yml up -d
if [ $? -eq 0 ]; then
@ -161,15 +151,6 @@ stop_services() {
exit 1
fi
echo "Stopping searxng..."
$DOCKER_COMPOSE_COMMAND -f ./searxng/docker-compose.yml down
if [ $? -eq 0 ]; then
print_success "Searxng stopped successfully."
else
print_error "failed to stop Searxng!"
exit 1
fi
echo "Stopping sftpgo..."
$DOCKER_COMPOSE_COMMAND -f ./sftpgo/docker-compose.yml down
if [ $? -eq 0 ]; then