Skip to content

Commit 76682a3

Browse files
authored
Update index.html
1 parent 74c695e commit 76682a3

1 file changed

Lines changed: 33 additions & 33 deletions

File tree

index.html

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,39 @@ <h3>📦 Grab the configs</h3>
483483
</details>
484484
</div>
485485
</li>
486+
<!-- Docker Compose -->
487+
<li class="file-block">
488+
<div class="file-header">
489+
<a href="assets/docker-compose.yml" download>⬇ Download Docker Compose</a>Docker for Containerisation of Systems
490+
<details>
491+
<summary>Show Code</summary>
492+
<div class="code-container">
493+
<button class="copy-btn" data-target="file-2">Copy</button>
494+
<pre><code id="file-2" class="language-yaml">version: '3.8'
495+
496+
services:
497+
web:
498+
image: nginx:latest
499+
ports:
500+
- "80:80"
501+
volumes:
502+
- ./html:/usr/share/nginx/html
503+
depends_on:
504+
- redis
505+
506+
redis:
507+
image: redis:latest
508+
ports:
509+
- "6379:6379"
510+
volumes:
511+
- redis_data:/data
486512

513+
volumes:
514+
redis_data:</code></pre>
515+
</div>
516+
</details>
517+
</div>
518+
</li>
487519
<!-- argocd-app.yaml -->
488520
<li class="file-block">
489521
<div class="file-header">
@@ -529,39 +561,7 @@ <h3>📦 Grab the configs</h3>
529561
</details>
530562
</div>
531563
</li>
532-
<!-- Docker Compose -->
533-
<li class="file-block">
534-
<div class="file-header">
535-
<a href="assets/docker-compose.yml" download>⬇ Download Docker Compose</a>Docker for Containerisation of Systems
536-
<details>
537-
<summary>Show Code</summary>
538-
<div class="code-container">
539-
<button class="copy-btn" data-target="file-2">Copy</button>
540-
<pre><code id="file-2" class="language-yaml">version: '3.8'
541-
542-
services:
543-
web:
544-
image: nginx:latest
545-
ports:
546-
- "80:80"
547-
volumes:
548-
- ./html:/usr/share/nginx/html
549-
depends_on:
550-
- redis
551-
552-
redis:
553-
image: redis:latest
554-
ports:
555-
- "6379:6379"
556-
volumes:
557-
- redis_data:/data
558-
559-
volumes:
560-
redis_data:</code></pre>
561-
</div>
562-
</details>
563-
</div>
564-
</li>
564+
565565
<!-- constraint-template.yaml -->
566566
<li class="file-block">
567567
<div class="file-header">

0 commit comments

Comments
 (0)