forked from tailscale-dev/ScaleTail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
29 lines (22 loc) · 1.5 KB
/
Copy path.env
File metadata and controls
29 lines (22 loc) · 1.5 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
#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=mailpit # Service name. Used as hostname in Tailscale and for container naming (app-${SERVICE}).
IMAGE_URL=axllent/mailpit:latest # Docker image URL from container registry.
# Network Configuration
SERVICEPORT=8025 # Mailpit web port. It is not exposed locally; Tailscale Serve proxies to it internally.
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/
# Mailpit Configuration
# Use a single-quoted regular expression so the trailing $ remains literal.
MAIL_DOMAIN_REGEX='@example\.com$' # Catch all recipients at example.com; change this to your escaped domain.
MAILPIT_MAX_MESSAGES=0 # Maximum stored messages; 0 disables count-based pruning.
MAILPIT_MAX_AGE=90d # Delete messages older than this age. Use hours (36h) or days (90d).
MAILPIT_MAX_MESSAGE_SIZE=50 # Maximum accepted message size in MB.