-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy path.env
More file actions
39 lines (31 loc) · 1.01 KB
/
.env
File metadata and controls
39 lines (31 loc) · 1.01 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
#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=tandoor
IMAGE_URL=vabene1111/recipes
# Network Configuration
SERVICEPORT=9001
DNS_SERVER=9.9.9.9
# Tailscale Configuration
# Generate a reusable or ephemeral auth key in the Tailscale admin console.
# Do not commit a real auth key to Git.
TS_AUTHKEY=
# Time Zone setting for containers
TZ=Europe/Amsterdam
# Tandoor Configuration
# Generate with: base64 /dev/urandom | head -c50
# Do not commit a real production secret to Git.
SECRET_KEY=REPLACE_WITH_RANDOM_SECRET
# Allowed hosts should match your Tailscale Serve hostname.
ALLOWED_HOSTS=tandoor.example.ts.net
# PostgreSQL Configuration
DB_ENGINE=django.db.backends.postgresql
POSTGRES_HOST=127.0.0.1
POSTGRES_PORT=5432
POSTGRES_USER=postgres
POSTGRES_PASSWORD=REPLACE_WITH_RANDOM_ALPHANUMERIC_PASSWORD
POSTGRES_DB=tandoor
# Optional Service variables
# PUID=1000
# PGID=1000