15 lines
320 B
YAML
Executable File
15 lines
320 B
YAML
Executable File
version: '3'
|
|
|
|
services:
|
|
guacamole:
|
|
container_name: guacamole
|
|
hostname: guacamole
|
|
image: oznu/guacamole
|
|
environment:
|
|
- TZ=America/Chicago
|
|
ports:
|
|
- 8082:8080/tcp
|
|
restart: always
|
|
volumes:
|
|
- /mnt/docker/appdata/guacamole/config:/config
|
|
- /etc/localtime:/etc/localtime:ro |