Add Docker deployment support

- Create Dockerfile with multi-stage build for optimized image size
- Add GitHub Actions workflow for automatic image publishing to ghcr.io
- Add PORT and HOST fallback defaults in config (8080 and 0.0.0.0)
- Update README with Docker Compose installation instructions
This commit is contained in:
2025-11-26 17:38:51 +01:00
parent 9f673bfca3
commit a71c5a6d76
4 changed files with 116 additions and 8 deletions
+9 -8
View File
@@ -25,8 +25,8 @@ func Load() (*Config, error) {
cfg := &Config{
DBType: os.Getenv("DB_TYPE"),
DBPath: os.Getenv("DB_PATH"),
Port: os.Getenv("PORT"),
Host: os.Getenv("HOST"),
Port: getEnvOrDefault("PORT", "8080"),
Host: getEnvOrDefault("HOST", "0.0.0.0"),
JWTSecret: os.Getenv("JWT_SECRET"),
JWTExpiry: os.Getenv("JWT_EXPIRY"),
RefreshTokenExpiry: os.Getenv("REFRESH_TOKEN_EXPIRY"),
@@ -40,12 +40,6 @@ func Load() (*Config, error) {
if cfg.DBPath == "" {
return nil, fmt.Errorf("DB_PATH is required")
}
if cfg.Port == "" {
return nil, fmt.Errorf("PORT is required")
}
if cfg.Host == "" {
return nil, fmt.Errorf("HOST is required")
}
if cfg.JWTSecret == "" {
return nil, fmt.Errorf("JWT_SECRET is required")
}
@@ -64,3 +58,10 @@ func Load() (*Config, error) {
return cfg, nil
}
func getEnvOrDefault(key, defaultValue string) string {
if value := os.Getenv(key); value != "" {
return value
}
return defaultValue
}