-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path.env
More file actions
41 lines (33 loc) · 1.33 KB
/
.env
File metadata and controls
41 lines (33 loc) · 1.33 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
# ============================================
# Project Configuration
# ============================================
# Unique identifier for this project
COMPOSE_PROJECT_NAME=pbs
# Container name (must be unique across all running containers)
CONTAINER_NAME=pbs
# ============================================
# Port Configuration
# ============================================
# Port for Jekyll site (4000 is default, use 4001+ for additional projects)
JEKYLL_PORT=8080
# Port for LiveReload (35729 is default, use 35730+ for additional projects)
LIVERELOAD_PORT=35730
# ============================================
# Image Configuration
# ============================================
# Base Docker image to use
BASE_IMAGE=jekyll-base:latest
# Path to base Dockerfile
# Default: ~/docker-images/jekyll-github-pages/Dockerfile
# Change this if your Dockerfile is in a different location
DOCKERFILE_PATH=./Dockerfile
# ============================================
# Jekyll Configuration
# ============================================
# Jekyll environment (development, production)
JEKYLL_ENV=development
# ============================================
# Optional: Custom Jekyll Command
# ============================================
# Uncomment to override default Jekyll serve command
# JEKYLL_COMMAND=bundle exec jekyll serve --host 0.0.0.0 --incremental