summaryrefslogtreecommitdiff
path: root/pipeline.dot
diff options
context:
space:
mode:
Diffstat (limited to 'pipeline.dot')
-rw-r--r--pipeline.dot10
1 files changed, 5 insertions, 5 deletions
diff --git a/pipeline.dot b/pipeline.dot
index dd31fa0..d0a9de6 100644
--- a/pipeline.dot
+++ b/pipeline.dot
@@ -1,10 +1,10 @@
digraph pipeline {
developer [shape="circle" label="developer"];
- commit [shape="rect" label="Commit stage"];
- acceptance [shape="rect" label="Acceptance stage"];
- testenv [shape="folder" label="A test environment"];
- deployprod [shape="rect" label="Deploy to production"];
- production [shape="folder" label="Production environment"];
+ commit [shape="ellipse" label="Commit stage"];
+ acceptance [shape="ellipse" label="Acceptance stage"];
+ testenv [shape="octagon" label="A test environment"];
+ deployprod [shape="ellipse" label="Deploy to production"];
+ production [shape="doubleoctagon" label="Production environment"];
developer -> commit;