Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Mafyuh/iac
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fdec4c41d98613efe1b4105e88945e22edd3c879
Choose a base ref
..
head repository: Mafyuh/iac
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed3fee0982691632c90cbda1d4cab1093e107390
Choose a head ref
Showing with 11 additions and 6 deletions.
  1. +6 −1 docker/arm/docker-compose.yml
  2. +5 −5 terraform/runner.tf
7 changes: 6 additions & 1 deletion docker/arm/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -107,7 +107,7 @@ services:
networks:
- gitea_main
n8n:
image: ghcr.io/n8n-io/n8n:1.56.0
image: ghcr.io/n8n-io/n8n:1.56.1
container_name: n8n
ports:
- 5678:5678
@@ -166,8 +166,11 @@ services:
restart: unless-stopped
volumes:
- db-data:/var/lib/postgresql/data
networks:
- gitea_main

wiki:
container_name: wiki
image: ghcr.io/requarks/wiki:2.5.303
depends_on:
- wiki-db
@@ -181,6 +184,8 @@ services:
restart: unless-stopped
ports:
- "1234:3000"
networks:
- gitea_main

networks:
gitea_main:
10 changes: 5 additions & 5 deletions terraform/runner.tf
Original file line number Diff line number Diff line change
@@ -2,17 +2,17 @@ resource "proxmox_virtual_environment_vm" "Runner" {

# VM General Settings
node_name = "prox"
vm_id = 207
vm_id = 952
name = "Runner"
description = "Forgejo Runner"
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
description = "Forgejo Runner for iac"
tags = ["tofu", "ubuntu-22", "iac-repo", "infrastructure"]

agent {
enabled = true # read 'Qemu guest agent' section, change to true only when ready
}

clone {
vm_id = 8000
vm_id = 8100
}

# VM CPU Settings
@@ -35,7 +35,7 @@ resource "proxmox_virtual_environment_vm" "Runner" {
# VM Disk Settings
disk {
datastore_id = "Fast2Tb"
size = 60
size = 40
interface = "scsi0"
}