Add umami
This commit is contained in:
parent
5783eea8c9
commit
2d279c5fa1
2 changed files with 15 additions and 0 deletions
5
umami/.env
Normal file
5
umami/.env
Normal file
|
@ -0,0 +1,5 @@
|
|||
DATABASE_URL=""
|
||||
DATABASE_TYPE"postgresql"
|
||||
HASH_SALT=""
|
||||
FORCE_SSL="1"
|
||||
HOSTNAME="analytics.serguzim.me"
|
10
umami/docker-compose.yml
Normal file
10
umami/docker-compose.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
version: '3'
|
||||
services:
|
||||
umami:
|
||||
image: ghcr.io/mikecao/umami:postgresql-latest
|
||||
ports:
|
||||
- "3013:3000"
|
||||
env_file:
|
||||
- .env
|
||||
- .secret.env
|
||||
restart: always
|
Reference in a new issue