-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy path.env
More file actions
51 lines (38 loc) · 1.84 KB
/
.env
File metadata and controls
51 lines (38 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#version=1.1
#URL=https://github.com/tailscale-dev/ScaleTail
#COMPOSE_PROJECT_NAME= # Optional: only use when running multiple deployments on the same infrastructure.
# Service Configuration
SERVICE=kaneo # Service name (e.g., adguard). Used as hostname in Tailscale and for container naming (app-${SERVICE}).
IMAGE_URL_BACKEND=ghcr.io/usekaneo/api:latest # Docker image URL from container registry (e.g., adguard/adguard-home).
IMAGE_URL_FRONTEND=ghcr.io/usekaneo/web:latest # Docker image URL from container registry (e.g., adguard/adguard-home).
IMAGE_URL_DATABASE=postgres:16-alpine # Docker image URL from container registry (e.g., adguard/adguard-home).
# Network Configuration
# SERVICEPORT=
SERVICEPORT_FRONTEND=5173
SERVICEPORT_BACKEND=1337
SERVICEPORT_DATABASE=5432
DNS_SERVER=9.9.9.9 # Preferred DNS server for Tailscale. Uncomment the "dns:" section in compose.yaml to enable.
# Tailscale Configuration
TS_AUTHKEY= # Auth key from https://tailscale.com/admin/authkeys. See: https://tailscale.com/kb/1085/auth-keys#generate-an-auth-key for instructions.
# Optional Service variables
# PUID=1000
#Time Zone setting for containers
TZ=Europe/Amsterdam # See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# Any Container environment variables are declared below. See https://docs.docker.com/compose/how-tos/environment-variables/
# Kaneo Configuration
KANEO_API_URL="https://kaneo.<your-tailnet>.ts.net/api"
KANEO_CLIENT_URL="https://kaneo.<your-tailnet>.ts.net"
# AUTH Configuration
AUTH_SECRET=
BETTER_AUTH_TRUSTED_PROXIES: "0.0.0.0/0"
# DB Configuration
DB_USERNAME=kaneo
DB_DATABASE_NAME=kaneo
DB_PASSWORD=
# Tailscale Configuration
TS_AUTHKEY=
# Time Zone setting for containers
TZ=Europe/Amsterdam # See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# Optional Service variables
# PUID=1000
#EXAMPLE_VAR="Environment varibale"