enhance link styling and bump traefik version

This commit is contained in:
miloschwartz 2025-06-09 17:38:18 -04:00
parent d70396a664
commit e41eafd497
No known key found for this signature in database
2 changed files with 11 additions and 15 deletions

View file

@ -35,7 +35,7 @@ services:
- 80:80 # Port for traefik because of the network_mode
{{end}}
traefik:
image: traefik:v3.4.0
image: traefik:v3.4.1
container_name: traefik
restart: unless-stopped
{{if .InstallGerbil}}
@ -58,4 +58,4 @@ services:
networks:
default:
driver: bridge
name: pangolin
name: pangolin

View file

@ -33,7 +33,7 @@ import { useEnvContext } from "@app/hooks/useEnvContext";
import { useState } from "react";
import { SwitchInput } from "@app/components/SwitchInput";
import Link from "next/link";
import { ArrowRight } from "lucide-react";
import { ArrowRight, ExternalLink } from "lucide-react";
const GeneralFormSchema = z.object({
name: z.string().nonempty("Name is required"),
@ -153,22 +153,18 @@ export default function GeneralPage() {
<FormDescription>
Enable Docker Socket
discovery for populating
container information,
useful in resource targets.
<Link
container information.
Socket path must be provided
to Newt.{" "}
<a
href="https://docs.fossorial.io/Newt/overview#docker-socket-integration"
target="_blank"
rel="noopener noreferrer"
className="underline"
className="text-primary hover:underline inline-flex items-center"
>
<span>
{" "}
Docker socket path
must be provided to
Newt in order to use
this feature.
</span>
</Link>
Learn more
<ExternalLink className="ml-1 h-4 w-4" />
</a>
</FormDescription>
</FormItem>
)}