flowchart TD
%% Roles
U[Publisher User]
%% Posit Connect stage
subgraph A[Posit Connect]
DEPLOY[Deploy Application]
CONTAINERIZE[Choose to Containerize Application]
BUILD[Build Container Image]
RUN[Run Containerized App on Connect]
end
%% Container Registry stage
subgraph B[Container Registry]
REGISTRY[Store Container Image]
end
%% External environments
subgraph C[External Environments]
EXT[Run Application Outside of Connect
(e.g., Docker, Kubernetes)]
end
%% Workflow connections
U -->|Deploy app| DEPLOY
DEPLOY --> CONTAINERIZE
CONTAINERIZE --> BUILD
BUILD -->|Push container image| REGISTRY
REGISTRY -->|Pull image| RUN
REGISTRY -->|Pull image| EXT
Created
November 18, 2025 20:13
-
-
Save kellobri/ece9256e4edc3665f68ee99b5c83737d to your computer and use it in GitHub Desktop.
Connect Containerization Mermaid Diagram
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment