Skip to content

Commit

Permalink
fix: geoserver: hard-code linux/amd64 platform
Browse files Browse the repository at this point in the history
This fixes running (with default settings) on arm64 platforms.
  • Loading branch information
derhuerst committed Mar 3, 2025
1 parent 483336f commit d852084
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
### Changed

- GeoServer: fix image name in `.env` (`geoserver` -> `ipl-geoserver`), pulling the image should now be possible again
- GeoServer: hard-code platform `linux/amd64` because there are currently no other platforms supported

## 2025-02-25

Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,8 @@ services:
geoserver:
networks: [ipl]
image: ${GEOSERVER_IMAGE}
# Currently, there's no linux/arm64 image.
platform: linux/amd64
user: *local-user
volumes:
# var/geoserver defaults to geoserver/data_dir, custom config shall explicitly be defined in etc/geoserver
Expand Down

0 comments on commit d852084

Please sign in to comment.