mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Cloud9 blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Cloud9 service, including environment variables and volume configuration. - Added logo for Cloud9. - Created template.toml for Cloud9 with default variables for configuration.
This commit is contained in:
parent
86a9bfbf11
commit
addc92abb4
20
blueprints/cloud9/docker-compose.yml
Normal file
20
blueprints/cloud9/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
cloud9:
|
||||||
|
image: lscr.io/linuxserver/cloud9:1.29.2
|
||||||
|
ports:
|
||||||
|
- "8000"
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/London
|
||||||
|
- GITURL=https://github.com/linuxserver/docker-cloud9.git
|
||||||
|
- USERNAME=${USERNAME}
|
||||||
|
- PASSWORD=${PASSWORD}
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- code:/code
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
code:
|
BIN
blueprints/cloud9/logo.png
Normal file
BIN
blueprints/cloud9/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
13
blueprints/cloud9/template.toml
Normal file
13
blueprints/cloud9/template.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
[variables]
|
||||||
|
USERNAME = "user"
|
||||||
|
PASSWORD = "${password:16}"
|
||||||
|
|
||||||
|
[config]
|
||||||
|
[[config.domains]]
|
||||||
|
serviceName = "cloud9"
|
||||||
|
port = 8000
|
||||||
|
host = "${domain}"
|
||||||
|
|
||||||
|
[config.env]
|
||||||
|
USERNAME = "${USERNAME}"
|
||||||
|
PASSWORD = "${PASSWORD}"
|
Loading…
Reference in New Issue
Block a user