A Terraform provider for Dokploy

Plugin-framework provider covering projects, environments, applications,
Compose stacks, managed databases, domains, mounts, ports, redirects,
basic auth, registries, SSH keys, certificates and backup destinations,
over Dokploy's tRPC-over-REST API.

The shim package exposes the provider to other Go modules, which is how
pulumi-dokploy bridges it.
This commit is contained in:
2026-08-09 12:17:26 +03:00
commit a6d8aa8b52
160 changed files with 24260 additions and 0 deletions

31
docs/resources/port.md Normal file
View File

@@ -0,0 +1,31 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "dokploy_port Resource - dokploy"
subcategory: ""
description: |-
A published port that exposes an application directly on the host, bypassing Traefik.
---
# dokploy_port (Resource)
A published port that exposes an application directly on the host, bypassing Traefik.
<!-- schema generated by tfplugindocs -->
## Schema
### Required
- `application_id` (String) Application this port belongs to.
- `protocol` (String) Transport protocol. Valid values: `tcp`, `udp`.
- `published_port` (Number) Port exposed on the host.
- `target_port` (Number) Port the container listens on.
### Optional
- `publish_mode` (String) Docker Swarm publish mode. `host` binds directly to the node; `ingress` uses the swarm routing mesh. Valid values: `ingress`, `host`.
### Read-Only
- `id` (String) Unique port identifier.