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 - 80:80 # Port for traefik because of the network_mode
{{end}} {{end}}
traefik: traefik:
image: traefik:v3.4.0 image: traefik:v3.4.1
container_name: traefik container_name: traefik
restart: unless-stopped restart: unless-stopped
{{if .InstallGerbil}} {{if .InstallGerbil}}

View file

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