mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
nginx template added (#309)
* nginx template added nginx template added * Update meta.json * Update meta.json * Update meta.json
This commit is contained in:
committed by
GitHub
parent
77266b3bd1
commit
d09809c125
14
blueprints/nginx/docker-compose.yml
Normal file
14
blueprints/nginx/docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
nginx:
|
||||
image: nginx:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 80
|
||||
- 443
|
||||
volumes:
|
||||
- nginx-config:/etc/nginx
|
||||
- nginx-html:/usr/share/nginx/html
|
||||
volumes:
|
||||
nginx-config: {}
|
||||
nginx-html: {}
|
||||
BIN
blueprints/nginx/nginx.png
Normal file
BIN
blueprints/nginx/nginx.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
11
blueprints/nginx/template.toml
Normal file
11
blueprints/nginx/template.toml
Normal file
@@ -0,0 +1,11 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
|
||||
[config]
|
||||
env = {}
|
||||
mounts = []
|
||||
|
||||
[[config.domains]]
|
||||
serviceName = "nginx"
|
||||
port = 80
|
||||
host = "${main_domain}"
|
||||
15
meta.json
15
meta.json
@@ -3074,6 +3074,21 @@
|
||||
"sync"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "nginx",
|
||||
"name": "Nginx",
|
||||
"version": "latest",
|
||||
"description": "Nginx is an High performance web server",
|
||||
"logo": "nginx.png",
|
||||
"links": {
|
||||
"github": "https://github.com/nginx/nginx",
|
||||
"website": "https://nginx.org/",
|
||||
"docs": "https://nginx.org/en/docs/"
|
||||
},
|
||||
"tags": [
|
||||
"webserver"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "nocodb",
|
||||
"name": "NocoDB",
|
||||
|
||||
Reference in New Issue
Block a user