-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mika Salminen
committed
Jan 2, 2025
1 parent
997ebdc
commit fbe197c
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#/bin/bash | ||
WITH_PERL=false # set to true if you want to install perl and plperl packages into image | ||
PGVERSION="17" | ||
DEMO=false # set to true to build the smallest possible image which will work only on Kubernetes | ||
TIMESCALEDB_APACHE_ONLY=false # set to false to build timescaledb community version (Timescale License) | ||
TIMESCALEDB_TOOLKIT=false # set to false to skip installing toolkit with timescaledb community edition. Only relevant when TIMESCALEDB_APACHE_ONLY=false | ||
ADDITIONAL_LOCALES=fi_FI # additional UTF-8 locales to build into image (example: "de_DE pl_PL fr_FR") | ||
|
||
docker build -t ghcr.io/damischa1/spilo:X.X . \ | ||
--build-arg WITH_PERL=false \ | ||
--build-arg PGVERSION="17" \ | ||
--build-arg DEMO=false \ | ||
--build-arg TIMESCALEDB_APACHE_ONLY=false \ | ||
--build-arg TIMESCALEDB_TOOLKIT=false \ | ||
--build-arg ADDITIONAL_LOCALES=fi_FI |