add docker compose file
This commit is contained in:
35
docker-compose.yml
Normal file
35
docker-compose.yml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
services:
|
||||||
|
guacd:
|
||||||
|
image: "guacamole/guacd"
|
||||||
|
container_name: "Guacd"
|
||||||
|
hostname: "guacd"
|
||||||
|
restart: "unless-stopped"
|
||||||
|
environment:
|
||||||
|
GUACD_LOG_LEVEL: "debug"
|
||||||
|
ports:
|
||||||
|
- "4822:4822"
|
||||||
|
networks:
|
||||||
|
guacamole:
|
||||||
|
|
||||||
|
guacamole:
|
||||||
|
image: "guacamole/guacamole"
|
||||||
|
container_name: "Guacamole"
|
||||||
|
hostname: "guacd"
|
||||||
|
restart: "unless-stopped"
|
||||||
|
depends_on:
|
||||||
|
- "guacd"
|
||||||
|
environment:
|
||||||
|
GUACD_HOSTNAME: "guacd"
|
||||||
|
GUACD_PORT: "4822"
|
||||||
|
POSTGRESQL_HOSTNAME: "${DB_HOST}"
|
||||||
|
POSTGRESQL_DATABASE: "${DB_BASE}"
|
||||||
|
POSTGRESQL_USER: "${DB_USER}"
|
||||||
|
POSTGRESQL_PASSWORD: "${DB_PORT}"
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
networks:
|
||||||
|
guacamole:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
guacamole:
|
||||||
|
name: "guacamole"
|
||||||
Reference in New Issue
Block a user