mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-20 20:35:43 +02:00
enhance link styling and bump traefik version
This commit is contained in:
parent
d70396a664
commit
e41eafd497
2 changed files with 11 additions and 15 deletions
|
@ -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}}
|
||||||
|
@ -58,4 +58,4 @@ services:
|
||||||
networks:
|
networks:
|
||||||
default:
|
default:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: pangolin
|
name: pangolin
|
||||||
|
|
|
@ -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>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue