Added .env.example files to all folders and changed the port env var for Gitea to follow naming convention

This commit is contained in:
2026-02-21 11:20:43 -08:00
parent b49b904333
commit 8f2142c1f2
6 changed files with 32 additions and 1 deletions

2
Doku/.env.example Normal file
View File

@@ -0,0 +1,2 @@
# Main interface port for accessing the application
DOKU_PORT="8000"

2
Draw.io/.env.example Normal file
View File

@@ -0,0 +1,2 @@
# Main interface port for accessing the application
DRAWIO_PORT="8000"

23
Gitea/.env.example Normal file
View File

@@ -0,0 +1,23 @@
# Specifiy the type of database server you are using so Gitea knows (leave default mysql for this docker compose setup)
GITEA_database_DB_TYPE="mysql"
# Port that the database server allows connection between the app server and the database server (leave default 3306)
GITEA_database_HOST="3306"
# Database name that the app server will create after connecting to the database server
GITEA_database_NAME="gitea"
# Username the app server will use to connect to the database server
GITEA_database_USER="gitea"
# Password for the database username that the app server will use to connect to the database server
GITEA_database_PASSWD="changeme"
# Main interface port for accessing the application
GITEA_PORT="8000"
# SSH port you can expose for some applciations to connect instead of HTTPS
SSH_PORT="2222"
# Password for the Root user on the database server. You won't have to use this so just set it to something strong
GITEA_database_ROOT_PASSWD="changeme"

View File

@@ -13,7 +13,7 @@ services:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- ${HOST_PORT}:3000
- ${GITEA_PORT}:3000
- ${SSH_PORT}:2222
depends_on:
- db

2
IT-Tools/.env.example Normal file
View File

@@ -0,0 +1,2 @@
# Main interface port for accessing the application
IT_TOOLS_PORT="8000"

2
Watchtower/.env.example Normal file
View File

@@ -0,0 +1,2 @@
# Time Zone where the application is operating
WATCHTOWER_TZ="America/Los_Angeles"