Pulumi code for my server setup
0
fork

Configure Feed

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

Add syncthing

+17
+17
src/index.ts
··· 312 312 ], 313 313 }); 314 314 315 + const syncthingService = await ContainerService.create("syncthing", { 316 + webPort: 8384, 317 + domain: "syncthing", 318 + ports: [22000, 21027], 319 + mounts: [ 320 + dockerConfMount("syncthing"), 321 + { 322 + source: "/home/bas/data/media/sync", 323 + target: "/sync", 324 + type: "bind", 325 + bindOptions: { 326 + propagation: "rshared", 327 + }, 328 + }, 329 + ], 330 + }); 331 + 315 332 const mkvtoolnixService = await ContainerService.create("mkvtoolnix", { 316 333 image: "jlesage/mkv-muxing-batch-gui", 317 334 webPort: 5800,