You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
StarWhiz 61d0113816 Fixed all Caddyfile entries to be Tabs not spaces. Added Meshcentral WIP. 2 years ago
..
README.md Fixed all Caddyfile entries to be Tabs not spaces. Added Meshcentral WIP. 2 years ago

README.md

Minimum File structure

/home/
└── ~/
    └── docker/
        └── cloudcmd/
            ├── docker-compose.yml

Add to Caddyfile (from ~/docker/caddy)

Remember to docker exec -w /etc/caddy caddy caddy reload after editing your 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