37 lines
797 B
YAML
37 lines
797 B
YAML
services:
|
|
guacd:
|
|
image: "guacamole/guacd"
|
|
container_name: "guacd"
|
|
hostname: "guacd"
|
|
restart: "unless-stopped"
|
|
environment:
|
|
GUACD_LOG_LEVEL: "debug"
|
|
networks:
|
|
guacamole:
|
|
|
|
guacamole:
|
|
image: "guacamole/guacamole"
|
|
container_name: "Guacamole"
|
|
hostname: "guacamole"
|
|
restart: "unless-stopped"
|
|
depends_on:
|
|
- "guacd"
|
|
healthcheck:
|
|
test: "curl -f http://localhost:8080/ || exit 1"
|
|
environment:
|
|
GUACD_HOSTNAME: "guacd"
|
|
GUACD_PORT: "4822"
|
|
POSTGRESQL_HOSTNAME: "${DB_HOST}"
|
|
POSTGRESQL_DATABASE: "${DB_BASE}"
|
|
POSTGRESQL_USER: "${DB_USER}"
|
|
POSTGRESQL_PASSWORD: "${DB_PASS}"
|
|
ports:
|
|
- "10.0.0.1:8080:8080"
|
|
networks:
|
|
guacamole:
|
|
|
|
networks:
|
|
guacamole:
|
|
name: "guacamole"
|
|
|