Skip to content

Commit

Permalink
tembo-pg-slim: set PGDATA to env (#54)
Browse files Browse the repository at this point in the history
* tembo-pg-slim: set PGDATA to env

* pg-slim: disable ARM builds temporarily
  • Loading branch information
vrmiguel authored Jan 30, 2024
1 parent 3d9a853 commit f613d62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
docker buildx build \
--build-arg PG_VERSION=${{ matrix.pg_version }} \
--build-arg PG_MAJOR=${{ matrix.pg_major }} \
--platform linux/amd64,linux/arm64 \
--platform linux/amd64 \
--tag quay.io/tembo/tembo-pg-slim:pg${{ matrix.pg_major }} \
--pull ${PUSH_FLAG} ./tembo-pg-slim
Expand Down
2 changes: 1 addition & 1 deletion tembo-pg-slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM quay.io/coredb/ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive
ARG ALTDIR=/var/lib/postgresql/data/tembo
ENV TZ=Etc/UTC
ARG PGDATA /var/lib/postgresql/data
ENV PGDATA /var/lib/postgresql/data
ARG PG_VERSION 15.3
ARG PG_MAJOR 15
ENV PATH $PATH:/usr/lib/postgresql/$PG_MAJOR/bin
Expand Down

0 comments on commit f613d62

Please sign in to comment.