Pulumi code for my server setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove netronome

-19
-19
services/haring/other/netronome.ts
··· 1 - import { DnsRecord } from "@pulumi/cloudflare"; 2 - import { getEnv } from "~lib/env"; 3 - import { confMount } from "~lib/service/mounts"; 4 - import { ContainerService } from "~lib/service/service"; 5 - 6 - export const netronomeService = new ContainerService("netronome", { 7 - image: "ghcr.io/autobrr/netronome", 8 - servicePort: 7575, 9 - mounts: [confMount("netronome", "/data")], 10 - }); 11 - 12 - export const netronomeDnsRecord = new DnsRecord("netronome", { 13 - zoneId: getEnv("CLOUDFLARE_ZONE_ID"), 14 - name: "netronome", 15 - type: "CNAME", 16 - ttl: 1, 17 - content: "haring.bas.sh", 18 - proxied: false, 19 - });