-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
20 lines (17 loc) · 896 Bytes
/
.env.example
File metadata and controls
20 lines (17 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# User Configuration
USERNAME=default-user # Default: default-user
USER_UID=1000 # Default: 1000
USER_GID=1000 # Default: 1000
# Password Configuration
# Option 1: Use plaintext password (RECOMMENDED - automatically hashed correctly)
USER_PASSWORD=your_secure_password_here
# Option 2: Use a pre-hashed password (advanced users only)
# Generate with: docker exec -it ubuntu-dev mkpasswd -m yescrypt
# USER_PASSWORD_HASH='$y$j9T$...'
# VS Code Server Configuration (all optional)
# VSCODE_PORT=8585 # Default: 8585
# VSCODE_HOST=0.0.0.0 # Default: 0.0.0.0
# VSCODE_TOKEN=your-secure-token # Default: no token required
# VSCODE_SERVER_BASE_PATH=/vscode # Default: none (root path)
# VSCODE_VERBOSE=true # Default: false
# VSCODE_LOG_LEVEL=debug # Default: info