initial checkin

This commit is contained in:
Radar231 2022-08-11 06:57:35 -04:00
commit c031ac7b5a
3 changed files with 29 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
lxdware/

13
README.md Normal file
View File

@ -0,0 +1,13 @@
# LXDWare docker installation
## References
* https://lxdware.com/
* https://github.com/lxdware/lxd-dashboard
* https://hub.docker.com/r/lxdware/dashboard
## Introduction
This deploys an LXDWare server.

15
docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
---
version: '3.2'
services:
lxdware:
container_name: lxdware
image: lxdware/dashboard:latest
volumes:
- ./lxdware:/var/lxdware
restart: unless-stopped
ports:
- "80:80"
# EOF