Skip to content

Instantly share code, notes, and snippets.

@Xachman
Last active April 14, 2022 17:08
Show Gist options
  • Save Xachman/066b3a771aeda4e50f40aa7074dd062c to your computer and use it in GitHub Desktop.
Save Xachman/066b3a771aeda4e50f40aa7074dd062c to your computer and use it in GitHub Desktop.
Apache Guacamole docker-compose.yml File
version: '2'
services:
guacd:
image: guacamole/guacd
guac-serve:
image: guacamole/guacamole
links:
- guacd:guacd
- mysql:mysql
ports:
- 7999:8080
environment:
- MYSQL_HOSTNAME=mysql
- MYSQL_DATABASE=guacamole
- MYSQL_USER=guacamole
- MYSQL_PASSWORD=some-mysql-password
- GUACD_HOSTNAME=guacd
- GUACD_PORT=4822
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=some-mysql-root-password
- MYSQL_DATABASE=guacamole
- MYSQL_USER=guacamole
- MYSQL_PASSWORD=some-mysql-password
volumes:
- ./data:/var/lib/mysql
@Xachman
Copy link
Author

Xachman commented May 16, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment