introducing guacamole on sernity
This commit is contained in:
parent
1cae3f0267
commit
5e16414230
35
serenity/guacamole/docker-compose.yml
Normal file
35
serenity/guacamole/docker-compose.yml
Normal file
@ -0,0 +1,35 @@
|
||||
---
|
||||
services:
|
||||
# guacd
|
||||
guacd:
|
||||
container_name: guacamole_backend
|
||||
image: guacamole/guacd-latest
|
||||
networks:
|
||||
- HomeProxy
|
||||
restart: always
|
||||
volumes:
|
||||
- /opt/appdata/guacamole/drive:/drive:rw
|
||||
- /opt/appdata/guacamole/record:/var/lib/guacamole/recordings:rw
|
||||
|
||||
# guacamole
|
||||
guacamole:
|
||||
container_name: guacamole
|
||||
depends_on:
|
||||
- guacd
|
||||
- mariadb
|
||||
environment:
|
||||
GUACD_HOSTNAME: guacd
|
||||
MYSQL_DATABASE: guacamole_db
|
||||
MYSQL_HOSTNAME: mariadb
|
||||
MYSQL_USER: 'guacamole'
|
||||
MYSQL_PASSWORD: '8mcCpMaGuEi2kXKHCXqc'
|
||||
MYSQL_AUTO_CREATE_ACCOUNTS: true
|
||||
image: guacamole/guacamole-latest
|
||||
links:
|
||||
- guacd
|
||||
networks:
|
||||
- HomeProxy
|
||||
restart: always
|
||||
volumes:
|
||||
- /opt/appdata/guacamole/drive:/drive:rw
|
||||
- /opt/appdata/guacamole/record:/var/lib/guacamole/recordings:rw
|
||||
Loading…
Reference in New Issue
Block a user