You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sshwifty/docker-compose.yml

35 lines
853 B
YAML

version: "3.9"
services:
# SSHWIFTY
sshwifty:
container_name: sshwifty
user: "nobody:nobody"
restart: always
build:
context: .
ports:
- 8182:8182
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
# KEYCLOAK GATEKEEPER
# gatekeeper:
# container_name: gatekeeper
# restart: always
# build:
# context: ./keycloak-gatekeeper/.
# ports:
# - 8880:8880
# depends_on:
# - sshwifty
# command:
# - "--discovery-url=https://<keycloak-dns>/auth/realms/<realm>/.well-known/openid-configuration"
# - "--client-id=sshwifty"
# - "--client-secret="
# - "--listen=0.0.0.0:8880"
# - "--upstream-url=http://sshwifty:8182"
# volumes:
# - /etc/timezone:/etc/timezone:ro
# - /etc/localtime:/etc/localtime:ro