You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
5 years ago | |
|---|---|---|
| .. | ||
| README.md | 5 years ago | |
README.md
Minimum File structure
/home/
└── ~/
└── docker/
└── cloudcmd/
├── docker-compose.yml
Caddyfile
cloud.yourdomain.com {
reverse_proxy cloudcmd:8000
}
docker-compose.yml
version: '2'
services:
cloudcmd-web:
container_name: cloudcmd
# ports:
# - 8000:8000
volumes:
- ./root:/root #I don't understand this one.
- ./mountpoint:/mnt/fs
image: coderaiser/cloudcmd
networks:
default:
external:
name: caddy_net