Skip to content

Instantly share code, notes, and snippets.

View KeenWarrior's full-sized avatar

Anuj Garg KeenWarrior

View GitHub Profile
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
public class ShortestPathCustom {
private static int[][] data;
private static int[][] weights;
private static int m, n;
@KeenWarrior
KeenWarrior / docker-compose.yml
Created March 27, 2017 07:35
keycloak with ssl
db:
image: postgres
environment:
- POSTGRES_DB=keycloak
- POSTGRES_USER=keycloak
- POSTGRES_PASSWORD=password
- POSTGRES_ROOT_PASSWORD=root_password
keycloak: