Add kimai template

This commit is contained in:
nizetic
2024-09-14 12:45:03 +02:00
parent 7ac45aa706
commit b8fcdf74e6
2 changed files with 119 additions and 0 deletions

67
public/svgs/kimai.svg Normal file
View File

@@ -0,0 +1,67 @@
<svg cursor="default" enable-background="new" height="512" viewBox="0 0 440 440" width="512"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<radialGradient id="a" cx="611" cy="41.266644"
gradientTransform="matrix(1.1673343 0 0 1.4196623 -102.24121 -19.722475)"
gradientUnits="userSpaceOnUse" r="160.5">
<stop offset="0" stop-color="#01fd00" />
<stop offset="1" stop-color="#009d39" />
</radialGradient>
<radialGradient id="b" cx="873.78265" cy="-16.37981"
gradientTransform="matrix(1.9295131 -1.1140049 1.1550268 2.0005649 -1087.6858 1104.8947)"
gradientUnits="userSpaceOnUse" r="55.747124">
<stop offset="0" stop-color="#f9f9f9" />
<stop offset="1" stop-color="#fff" />
</radialGradient>
<linearGradient id="c" gradientUnits="userSpaceOnUse" x1="611.14288" x2="610.57141"
y1="234.57143" y2="-110.91601">
<stop offset="0" stop-color="#f2f2f2" />
<stop offset="1" stop-color="#f2f2f2" />
</linearGradient>
<g transform="translate(-390.56693 181.56689)">
<g>
<path d="m391.020508-182.838852h439.95895v439.95895h-439.95895z" fill="#fff"
stroke="#58dd58" stroke-linejoin="round" stroke-width=".040996" visibility="hidden" />
<circle cx="611" cy="38" fill="url(#c)" r="187.776825" />
<circle cx="611" cy="38" fill="url(#a)" r="166.285645" stroke="#fff"
stroke-linejoin="round" stroke-width="3" />
<path d="m571.156433 108.308197 110-63.999998-110-64z" fill="url(#b)"
fill-rule="evenodd" />
</g>
<g fill="#c7efc4" fill-rule="evenodd">
<rect height="32" opacity=".5" ry="7"
transform="matrix(-.83616052 -.5484848 .5484848 -.83616052 0 0)" width="14"
x="-542.46875" y="419.410309" />
<rect height="32" opacity=".5" ry="7"
transform="matrix(-.45720822 -.88935968 .88935968 -.45720822 0 0)" width="14"
x="-320.158203" y="642.978027" />
<rect height="41" opacity=".5" ry="9" transform="rotate(-90)" width="18" x="-48.536366"
y="718.754395" />
<rect height="32" opacity=".5" ry="7"
transform="matrix(.47159375 -.88181593 .88181593 .47159375 0 0)" width="14"
x="244.405457" y="673.798523" />
<rect height="32" opacity=".5" ry="7"
transform="matrix(-.8503618 .52619845 -.52619845 -.8503618 0 0)" width="14"
x="-505.884949" y="-503.867859" />
<rect height="41" opacity=".5" ry="9" transform="scale(-1)" width="18" x="-620.297424"
y="-187.942719" />
<rect height="32" opacity=".5" ry="7"
transform="matrix(-.84033379 -.54206929 .54206929 -.84033379 0 0)" width="14"
x="-539.16571" y="148.581909" />
<rect height="32" opacity=".5" ry="7"
transform="matrix(-.45720822 -.88935968 .88935968 -.45720822 0 0)" width="14"
x="-319.728088" y="374.804901" />
<rect height="41" opacity=".5" ry="9" transform="rotate(-90)" width="18" x="-48.536366"
y="460.964569" />
<rect height="32" opacity=".5" ry="7"
transform="matrix(.47159375 -.88181593 .88181593 .47159375 0 0)" width="14"
x="250.841736" y="406.195648" />
<rect height="32" opacity=".5" ry="7"
transform="matrix(-.849305 .52790248 -.52790248 -.849305 0 0)" width="14"
x="-505.957611" y="-236.959518" />
<g transform="scale(-1)">
<rect height="41" opacity=".5" ry="9" width="18" x="-633.02533" y="69.120789" />
<rect height="41" opacity=".5" ry="9" width="18" x="-606.761353" y="69.120789" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,52 @@
# documentation: https://www.kimai.org/
# slogan: Open source time-tracking app.
# tags: time-tracking, open-source
# logo: svgs/kimai.svg
# port: 8001
services:
mysql:
image: mysql:8.3
container_name: kimai_db
volumes:
- mysql:/var/lib/mysql
environment:
- MYSQL_DATABASE=${MYSQL_DATABASE:-kimai}
- MYSQL_USER=${MYSQL_USER:-kimaiuser}
- MYSQL_PASSWORD=${SERVICE_PASSWORD_MYSQL}
- MYSQL_ROOT_PASSWORD=${SERVICE_PASSWORD_MYSQL_ROOT}
command: --default-storage-engine innodb
restart: unless-stopped
healthcheck:
test: mysqladmin -p$$MYSQL_ROOT_PASSWORD ping -h localhost
interval: 20s
start_period: 10s
timeout: 10s
retries: 3
kimai:
image: kimai/kimai2:apache-latest
container_name: kimai
depends_on:
mysql:
condition: service_healthy
volumes:
- data:/opt/kimai/var/data
environment:
- SERVICE_FQDN_KIMAI
- APP_SECRET=${SERVICE_PASSWORD_APP_SECRET}
- MAILER_FROM=${MAILER_FROM:-kimai@example.com}
- MAILER_URL=${MAILER_URL:-null://null}
- ADMINMAIL=${ADMINMAIL:-admin@kimai.local}
- ADMINPASS=${SERVICE_PASSWORD_ADMINPASS}
- DATABASE_URL=mysql://${MYSQL_USER}:${SERVICE_PASSWORD_MYSQL}@mysql/${MYSQL_DATABASE}?charset=utf8mb4&serverVersion=8.3.0
- TRUSTED_HOSTS=localhost
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.http.routers.kimai.entryPoints=http
- traefik.http.services.kimai.loadbalancer.server.port=8001
volumes:
data:
mysql: