Skip to content

Instantly share code, notes, and snippets.

Avatar
🎯
Focusing

Wassim Akachi WassimAkachi

🎯
Focusing
View GitHub Profile
@WassimAkachi
WassimAkachi / Dockerfile
Created June 8, 2022 15:10 — forked from xgp/Dockerfile
Keycloak 17 example using JGroups JDBC_PING discovery protocol for Infinispan
View Dockerfile
FROM quay.io/keycloak/keycloak:17.0.0 as builder
ENV KC_METRICS_ENABLED=true
ENV KC_FEATURES=preview
ENV KC_DB=postgres
ENV KC_HTTP_RELATIVE_PATH=/auth
# specify the custom cache config file here
ENV KC_CACHE_CONFIG_FILE=cache-ispn-jdbc-ping.xml
# copy the custom cache config file into the keycloak conf dir
@WassimAkachi
WassimAkachi / .editorconfig
Created December 15, 2021 18:56
EditorConfig
View .editorconfig
# EditorConfig configuration for CoreMedia Blueprint Workspace
# https://editorconfig.org
# To apply the EditorConfig settings in IDEA, check Preferences | Editor | Code Style | Enable EditorConfig support.
root = true
[*]
@WassimAkachi
WassimAkachi / ansible-init.sh
Created September 29, 2019 13:33
Ansible init script
View ansible-init.sh
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
ANSIBLE_PROJECT_ROOT="."
if [[ $# -ge 1 ]]
then
ANSIBLE_PROJECT_ROOT="${1}"
fi
@WassimAkachi
WassimAkachi / MIT-License
Last active March 6, 2019 11:58
MIT License with Copyright (c) 2019 Wassim Akachi
View MIT-License
MIT License
Copyright (c) 2019 Wassim Akachi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions: