diff --git a/proxmox/services/docker-based/authentik.yml b/proxmox/services/docker-based/authentik.yml index 1c01dfb..1897257 100644 --- a/proxmox/services/docker-based/authentik.yml +++ b/proxmox/services/docker-based/authentik.yml @@ -20,8 +20,8 @@ services: AUTHENTIK_POSTGRESQL__USER: authentik_user AUTHENTIK_POSTGRESQL__PASSWORD: ${AUTHENTIK_DB_PASSWORD} ports: - - 9000: 9000 - - 9443: 9443 + - "9000:9000" + - "9443:9443" volumes: - authentik_media:/media - authentik_templates:/templates diff --git a/proxmox/services/docker-based/forgejo.yml b/proxmox/services/docker-based/forgejo.yml index 366cd60..51a496b 100644 --- a/proxmox/services/docker-based/forgejo.yml +++ b/proxmox/services/docker-based/forgejo.yml @@ -20,7 +20,7 @@ services: FORGEJO__database__PASSWD: ${FORGEJO_DB_PASSWORD} FORGEJO__server__HTTP_PORT: 3000 ports: - - 3000:3000 + - "3000:3000" volumes: - forgejo_data:/data diff --git a/proxmox/services/docker-based/ghost.yml b/proxmox/services/docker-based/ghost.yml index 0016006..233cb30 100644 --- a/proxmox/services/docker-based/ghost.yml +++ b/proxmox/services/docker-based/ghost.yml @@ -19,7 +19,7 @@ services: database__connection__database: ghost1_db url: ${GHOST1_URL:-http://localhost:2368} ports: - - 2368: 2368 + - "2368:2368" volumes: - ghost1_data:/var/lib/ghost/content @@ -35,7 +35,7 @@ services: url: ${GHOST2_URL:-http://localhost:2369} server__port: 2369 ports: - - 2368: 2369 + - "2368:2369" volumes: - ghost2_data:/var/lib/ghost/content @@ -51,7 +51,7 @@ services: url: ${GHOST3_URL:-http://localhost:2370} server__port: 2370 ports: - - 2370: 2370 + - "2370:2370" volumes: - ghost3_data:/var/lib/ghost/content diff --git a/proxmox/services/docker-based/mariadb.yml b/proxmox/services/docker-based/mariadb.yml index 5c39182..a9b8690 100644 --- a/proxmox/services/docker-based/mariadb.yml +++ b/proxmox/services/docker-based/mariadb.yml @@ -11,7 +11,7 @@ services: environment: MYSQL_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD} ports: - - 3306: 3306 + - "3306:3306" volumes: - mariadb_data:/var/lib/mysql diff --git a/proxmox/services/docker-based/n8n.yml b/proxmox/services/docker-based/n8n.yml index b215f7a..b569439 100644 --- a/proxmox/services/docker-based/n8n.yml +++ b/proxmox/services/docker-based/n8n.yml @@ -16,7 +16,7 @@ services: DB_POSTGRESDB_USER: n8n_user DB_POSTGRESDB_PASSWORD: ${N8N_DB_PASSWORD} ports: - - 5678: 5678 + - "5678:5678" volumes: - n8n_data:/home/node/.n8n diff --git a/proxmox/services/docker-based/nats.yml b/proxmox/services/docker-based/nats.yml index 90c3b53..1104468 100644 --- a/proxmox/services/docker-based/nats.yml +++ b/proxmox/services/docker-based/nats.yml @@ -13,9 +13,9 @@ services: command: - -c=/etc/nats/nats.conf ports: - - 4222: 4222 - - 8080: 8080 - - 8222: 8223 + - "4222:4222" + - "8080:8080" + - "8222:8223" volumes: - nats_data:/data configs: diff --git a/proxmox/services/docker-based/snikket.yml b/proxmox/services/docker-based/snikket.yml index d8eda37..b50eaf7 100644 --- a/proxmox/services/docker-based/snikket.yml +++ b/proxmox/services/docker-based/snikket.yml @@ -17,7 +17,7 @@ services: image: snikket/snikket-server:latest command: web ports: - - 80: 80 + - "80:80" volumes: - snikket_data:/snikket @@ -25,9 +25,9 @@ services: image: snikket/snikket-server:latest command: server ports: - - 5222: 5222 - - 5269: 5269 - - 5000: 5000 + - "5222:5222" + - "5269:5269" + - "5000:5000" volumes: - snikket_data:/snikket diff --git a/proxmox/services/docker-based/synapse.yml b/proxmox/services/docker-based/synapse.yml index 14ad911..82081c3 100644 --- a/proxmox/services/docker-based/synapse.yml +++ b/proxmox/services/docker-based/synapse.yml @@ -22,7 +22,7 @@ services: synapse: image: matrixdotorg/synapse:latest environment: - SYNAPSE_SERVER_NAME: pve-social + SYNAPSE_SERVER_NAME: "matrix.the-fulfillment.org" SYNAPSE_REPORT_STATS: "no" ports: - 8008: 8008 diff --git a/proxmox/services/docker-based/vaultwarden.yml b/proxmox/services/docker-based/vaultwarden.yml index 1167ae9..eb4c9b4 100644 --- a/proxmox/services/docker-based/vaultwarden.yml +++ b/proxmox/services/docker-based/vaultwarden.yml @@ -18,7 +18,7 @@ services: ROCKET_PORT: 8222 ADMIN_TOKEN: ${VAULT_ADMIN_TOKEN} ports: - - 8222: 8222 + - "8222:8222" volumes: - vaultwarden_data:/data