mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- 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.
20 lines
405 B
YAML
20 lines
405 B
YAML
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: |