Skip to content

Commit 4ffcfef

Browse files
committed
Docker - add comments about PostGIS images in docker compose file
1 parent 58487b3 commit 4ffcfef

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

docker-compose-dev.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
services:
1111
fittrackee-db:
1212
container_name: fittrackee-db
13+
# Note: there is no official image for PostGIS on ARM CPUs yet.
14+
# The workaround is to build PostGIS image locally.
1315
image: postgis/postgis:17-3.5-alpine
1416
ports:
1517
- "5435:5432"

docker-compose.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@
1010
services:
1111
fittrackee-db:
1212
container_name: fittrackee-db
13-
# always backup the database before FitTrackee upgrade when the new version
14-
# includes database migrations
13+
# Always backup the database before FitTrackee upgrade when the new version
14+
# includes database migrations.
1515
#
16-
# please refer to the PostgreSQL and PostGIS documentation before upgrading
17-
# image version
16+
# Please refer to the PostgreSQL and PostGIS documentation before upgrading
17+
# image version.
18+
#
19+
# Warning: there is no official image for PostGIS on ARM CPUs yet, see:
20+
# https://github.com/postgis/docker-postgis/issues/216
21+
# The workaround is to build PostGIS image locally.
1822
image: postgis/postgis:17-3.5-alpine
1923
env_file:
2024
- .env

0 commit comments

Comments
 (0)