feat: Add Docker Compose

This commit is contained in:
Suphonchai Phoonsawat 2024-04-19 12:28:48 +07:00
parent 63a317e42f
commit d1cea85891
13 changed files with 650 additions and 0 deletions

View file

@ -0,0 +1,159 @@
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;200;300;400;500;600;700;800;900&display=swap");
.pf-c-button.pf-m-primary {
--pf-c-button--m-primary--BackgroundColor: #1a458a;
}
#kc-header,
#kc-header-wrapper {
padding: 0 0 0 0 !important;
}
.pf-c-form-control[aria-invalid=true] {
background-repeat: no-repeat;
}
[id^="input-error"] {
color: #ea2223;
}
#kc-registration a {
color: #1a458a;
font-weight: 800;
text-decoration: none;
}
.login-pf-page .login-pf-settings a {
color: #ea2223;
font-weight: 800;
text-decoration: none;
}
div.kc-logo-text {
background-image: url("../img/logo.png");
background-size: contain;
background-position: center center;
height: 150px;
width: 80%;
margin-inline: auto;
}
.login-pf body {
font-family: "Noto Sans Thai";
background: url("../img/bg.png") no-repeat center center fixed;
background-size: cover;
height: 100%;
}
#kc-form-options .checkbox {
color: inherit;
}
.card-pf {
border-top: 0;
border-radius: 1rem;
backdrop-filter: blur(16px);
background-color: hsla(0 0 100% / 0.5);
}
#kc-info-wrapper {
background: transparent;
height: 100%;
}
.pf-c-form-control {
border: white;
outline: none;
box-shadow:
0 3px 5px -2px hsl(0 0 0% / 8%),
0 7px 14px -5px hsl(0 0 0% / 10%);
}
.pf-c-form-control:focus {
border: none;
}
.pf-c-button.pf-m-control {
border: none;
background: transparent;
}
.pf-c-button:after {
display: none;
}
.pf-c-form-control {
background: white;
padding: 1.75rem 2rem !important;
border-radius: 1rem !important;
}
.pf-c-input-group,
.pf-c-button {
border-radius: 1rem !important;
box-shadow:
0 3px 5px -2px hsl(0 0% 0% / 8%),
0 7px 14px -5px hsl(0 0% 0% / 10%);
}
.pf-c-input-group .pf-c-form-control,
.pf-c-input-group .pf-c-button {
box-shadow: none;
}
#kc-form-buttons .pf-c-button {
padding: 0.75rem 2rem !important;
}
@media (prefers-color-scheme: dark) {
.login-pf body {
background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
url("../img/bg.png");
color: white;
}
.pf-c-button.pf-m-primary {
--pf-c-button--m-primary--BackgroundColor: #008bff;
}
.pf-c-button.pf-m-primary:hover {
--pf-c-button--m-primary--BackgroundColor: #1971c2;
}
#kc-locale ul {
color: white !important;
background: #212121 !important;
}
.pf-c-dropdown__menu-item {
outline: none !important;
color: white;
background: #212121;
}
.pf-c-dropdown__menu-item:hover {
outline: none !important;
color: white;
background: #121212;
}
.card-pf {
color: white;
background-color: hsla(0 0% 10% / 1);
border: 1px solid hsl(0 0% 20%);
}
.pf-c-form-control,
.pf-c-input-group {
color: white;
background-color: hsla(0 0% 15% / 1);
}
.pf-c-input-group i {
color: white;
}
#kc-registration a {
color: #008bff;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View file

@ -0,0 +1,3 @@
parent=keycloak
import=common/keycloak
styles=css/login.css css/style.css

View file

@ -0,0 +1,28 @@
http:
routers:
# be1-dev:
# service: org
# rule: "Host(`bma-ehr-dev1.frappet.synology.me`) && (PathPrefix(`/api/v1/Organization`)||PathPrefix(`/api/v1/PositionMaster`))"
report-server-dev:
service: report-server-dev
rule: "Host(`bma-ehr.frappet.synology.me`) && (PathPrefix(`/api/v1/report-template`) )"
services:
# org:
# loadBalancer:
# servers:
# - url: 'http://192.168.1.9:4053/'
report-server-dev:
loadBalancer:
servers:
- url: 'http://192.168.1.40:7001/'
middlewares:
user-auth: # UserName:admin Password: admin123
basicAuth:
users: #create from htpasswd
- "admin:$apr1$rKaNOONw$vJXI83by5aEK4xdtiov3W1"
- "frappet:$apr1$SeCe2hH6$DcAxZNsMSmIjd4/9TUWVC."

View file

@ -0,0 +1,15 @@
entrypoints:
unsecure:
address: :80
providers:
docker:
endpoint: "unix:///var/run/docker.sock"
exposedByDefault: false
file:
filename: /routes.yaml
watch: true
api: # enable dashboard
dashboard: true
insecure: true
log:
level: DEBUG