File creation

This commit is contained in:
Iwan Clement
2020-05-14 18:49:38 +02:00
parent da0bd065d3
commit 1c5e76b9e0

18
xrdp/docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
# --name RattyDAVE20.04 --privileged=true -p 3389:3389 -e TZ="Europe/Paris" -v xrdp_scripts/createusers.txt:/root/createusers.txt \
# -v xrdp_scripts/startup.sh:/root/startup.sh -v xrdp_home:/home -dit --restart unless-stopped rattydave/docker-ubuntu-xrdp-mate-custom:20.04
version: '2'
services:
xrdp-mate:
container_name: RattyDAVE20.04
privileged: true
ports:
- '3389:3389'
environment:
- TZ=Europe/Paris
volumes:
- 'xrdp_scripts/createusers.txt:/root/createusers.txt'
- 'xrdp_scripts/startup.sh:/root/startup.sh'
- 'xrdp_home:/home'
restart: unless-stopped
image: 'rattydave/docker-ubuntu-xrdp-mate-custom:20.04'