mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-26 11:33:08 +00:00
3a65af3886
unofficial ansible-nas style guide: braces are NOT used when stating Ansible variables in other documentation
30 lines
882 B
Markdown
30 lines
882 B
Markdown
# Virtual Desktop
|
|
|
|
It's possible to run a cut down desktop within a Docker container. We use [RattyDAVE's custom Ubuntu Mate image](https://github.com/RattyDAVE/docker-ubuntu-xrdp-mate-custom).
|
|
|
|
## Usage
|
|
|
|
Set `virtual_desktop_enabled: true` in your `inventories/<your_inventory>/nas.yml` file.
|
|
|
|
## Specific Configuration
|
|
|
|
By default `ansible_nas_user` will be granted access with a password of `topsecret` with sudo rights. To change or add additional users override `vd_users` in your `nas.yml`:
|
|
|
|
```
|
|
vd_users:
|
|
- username: "{{ ansible_nas_user }}"
|
|
password: "topsecret"
|
|
sudo: "Y"
|
|
- username: "larrylaffer"
|
|
password: "kensentme"
|
|
sudo: "Y"
|
|
```
|
|
|
|
## Mounts
|
|
|
|
`samba_shares_root` is mounted to `/samba`.
|
|
`docker_home` is mounted to `/docker`.
|
|
|
|
## Remote Access
|
|
|
|
It's possible to access your virtual desktop through a web browser! Check out [Guacamole](guacamole.md).
|