Skip to content

Commit e96bfbd

Browse files
committed
Full update of repo
1 parent 8121258 commit e96bfbd

File tree

29 files changed

+870
-294
lines changed

29 files changed

+870
-294
lines changed

.github/workflows/main.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Docker PostGIS CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
schedule:
8+
- cron: '15 5 * * 1'
9+
10+
defaults:
11+
run:
12+
shell: bash
13+
14+
jobs:
15+
16+
make-docker-images:
17+
strategy:
18+
matrix:
19+
postgres: [13, 14, 15, 16, 17]
20+
postgis: [3.5]
21+
mobilitydb: [1.2, master]
22+
23+
name: Build docker image for ${{ matrix.postgres }}-${{ matrix.postgis }}-${{ matrix.mobilitydb }}
24+
runs-on: ubuntu-latest
25+
continue-on-error: ${{ matrix.postgis == 'master' }}
26+
env:
27+
VERSION: ${{ matrix.postgres }}-${{ matrix.postgis }}-${{ matrix.mobilitydb }}
28+
29+
steps:
30+
- name: Checkout source
31+
uses: actions/checkout@v4
32+
33+
- name: Build docker image for ${{ env.VERSION }}
34+
run: make build
35+
36+
- name: Login to dockerhub
37+
uses: docker/login-action@v3
38+
if: ${{ (github.ref == 'refs/heads/master') && (github.event_name != 'pull_request') }}
39+
with:
40+
username: ${{ secrets.DOCKERHUB_USERNAME }}
41+
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
42+
43+
- name: Push docker image to dockerhub
44+
if: ${{ (github.ref == 'refs/heads/master') && (github.event_name != 'pull_request') }}
45+
run: make push
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Update Docker Hub Description
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- README.md # Runs only if README.md is modified
9+
10+
jobs:
11+
update-description:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
18+
- name: Run update-dockerhub-description
19+
env:
20+
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
21+
DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
22+
run: make update-dockerhub-description

13-3.5-1.2/Dockerfile

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Build stage
2+
ARG POSTGRES_VERSION=13
3+
ARG POSTGIS_VERSION=3.5
4+
5+
FROM postgis/postgis:${POSTGRES_VERSION}-${POSTGIS_VERSION} AS builder
6+
7+
# Set build arguments
8+
ARG MOBILITYDB_TAG=stable-1.2
9+
10+
# Install build dependencies
11+
RUN apt-get update \
12+
&& apt-get install -y --no-install-recommends \
13+
build-essential \
14+
cmake \
15+
wget \
16+
libproj-dev \
17+
libjson-c-dev \
18+
libgsl-dev \
19+
libgeos-dev \
20+
postgresql-server-dev-${PG_MAJOR} \
21+
&& rm -rf /var/lib/apt/lists/*
22+
23+
# Download and extract MobilityDB source
24+
WORKDIR /usr/local/src
25+
RUN wget -O MobilityDB.tar.gz "https://github.com/MobilityDB/MobilityDB/archive/${MOBILITYDB_TAG}.tar.gz" \
26+
&& mkdir -p MobilityDB \
27+
&& tar \
28+
--extract \
29+
--file MobilityDB.tar.gz \
30+
--directory MobilityDB \
31+
--strip-components 1 \
32+
&& rm MobilityDB.tar.gz
33+
34+
# Build MobilityDB
35+
WORKDIR /usr/local/src/MobilityDB
36+
RUN mkdir -p build \
37+
&& cd build \
38+
&& cmake -DCMAKE_BUILD_TYPE=Release \
39+
-DNPOINT=on -DCBUFFER=on -DPOSE=on .. \
40+
&& make -j$(nproc) \
41+
&& make install
42+
43+
# Prepare initialization script
44+
RUN cp docker/initdb-mobilitydb.sh /tmp/11_mobilitydb.sh
45+
46+
# Final stage
47+
FROM postgis/postgis:${POSTGRES_VERSION}-${POSTGIS_VERSION}
48+
49+
# Configuration Parameters
50+
LABEL maintainer="MobilityDB Project - https://github.com/MobilityDB/MobilityDB"
51+
LABEL org.opencontainers.image.description="MobilityDB - An open source geospatial trajectory data management & analysis platform"
52+
LABEL org.opencontainers.image.source="https://github.com/MobilityDB/MobilityDB"
53+
54+
# Install runtime dependencies only
55+
RUN apt-get update \
56+
&& apt-get install -y --no-install-recommends \
57+
libproj-dev \
58+
libjson-c-dev \
59+
libgsl-dev \
60+
libgeos-dev \
61+
&& rm -rf /var/lib/apt/lists/*
62+
63+
# Copy MobilityDB installed files from builder
64+
COPY --from=builder /usr/share/postgresql/${PG_MAJOR}/extension/mobilitydb* /usr/share/postgresql/${PG_MAJOR}/extension/
65+
COPY --from=builder /usr/lib/postgresql/${PG_MAJOR}/lib/libMobilityDB* /usr/lib/postgresql/${PG_MAJOR}/lib/
66+
COPY --from=builder /tmp/11_mobilitydb.sh /docker-entrypoint-initdb.d/11_mobilitydb.sh

13-3.5-master/Dockerfile

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Build stage
2+
ARG POSTGRES_VERSION=13
3+
ARG POSTGIS_VERSION=3.5
4+
5+
FROM postgis/postgis:${POSTGRES_VERSION}-${POSTGIS_VERSION} AS builder
6+
7+
# Set build arguments
8+
ARG MOBILITYDB_TAG=master
9+
10+
# Install build dependencies
11+
RUN apt-get update \
12+
&& apt-get install -y --no-install-recommends \
13+
build-essential \
14+
cmake \
15+
wget \
16+
libproj-dev \
17+
libjson-c-dev \
18+
libgsl-dev \
19+
libgeos-dev \
20+
postgresql-server-dev-${PG_MAJOR} \
21+
&& rm -rf /var/lib/apt/lists/*
22+
23+
# Download and extract MobilityDB source
24+
WORKDIR /usr/local/src
25+
RUN wget -O MobilityDB.tar.gz "https://github.com/MobilityDB/MobilityDB/archive/${MOBILITYDB_TAG}.tar.gz" \
26+
&& mkdir -p MobilityDB \
27+
&& tar \
28+
--extract \
29+
--file MobilityDB.tar.gz \
30+
--directory MobilityDB \
31+
--strip-components 1 \
32+
&& rm MobilityDB.tar.gz
33+
34+
# Build MobilityDB
35+
WORKDIR /usr/local/src/MobilityDB
36+
RUN mkdir -p build \
37+
&& cd build \
38+
&& cmake -DCMAKE_BUILD_TYPE=Release \
39+
-DNPOINT=on -DCBUFFER=on -DPOSE=on .. \
40+
&& make -j$(nproc) \
41+
&& make install
42+
43+
# Prepare initialization script
44+
RUN cp docker/initdb-mobilitydb.sh /tmp/11_mobilitydb.sh
45+
46+
# Final stage
47+
FROM postgis/postgis:${POSTGRES_VERSION}-${POSTGIS_VERSION}
48+
49+
# Configuration Parameters
50+
LABEL maintainer="MobilityDB Project - https://github.com/MobilityDB/MobilityDB"
51+
LABEL org.opencontainers.image.description="MobilityDB - An open source geospatial trajectory data management & analysis platform"
52+
LABEL org.opencontainers.image.source="https://github.com/MobilityDB/MobilityDB"
53+
54+
# Install runtime dependencies only
55+
RUN apt-get update \
56+
&& apt-get install -y --no-install-recommends \
57+
libproj-dev \
58+
libjson-c-dev \
59+
libgsl-dev \
60+
libgeos-dev \
61+
&& rm -rf /var/lib/apt/lists/*
62+
63+
# Copy MobilityDB installed files from builder
64+
COPY --from=builder /usr/share/postgresql/${PG_MAJOR}/extension/mobilitydb* /usr/share/postgresql/${PG_MAJOR}/extension/
65+
COPY --from=builder /usr/lib/postgresql/${PG_MAJOR}/lib/libMobilityDB* /usr/lib/postgresql/${PG_MAJOR}/lib/
66+
COPY --from=builder /tmp/11_mobilitydb.sh /docker-entrypoint-initdb.d/11_mobilitydb.sh

14-3.2-1/Dockerfile

-53
This file was deleted.

14-3.2-1/docker-compose.yml

-18
This file was deleted.

14-3.2-1/initdb-mobilitydb.sh

-11
This file was deleted.

14-3.2-develop-berlinmod/Dockerfile

-11
This file was deleted.

14-3.2-develop-berlinmod/README.md

-2
This file was deleted.

14-3.2-develop-berlinmod/docker-compose.yml

-18
This file was deleted.

14-3.2-develop-workshop/Dockerfile

-15
This file was deleted.

14-3.2-develop-workshop/README.md

-2
This file was deleted.

14-3.2-develop-workshop/docker-compose.yml

-18
This file was deleted.

0 commit comments

Comments
 (0)