fix: update BASE_IMAGES to only include actual registry images
- Keep: alpine (runtime), node (frontend), rust (backend builder) - Remove: busybox, golang, nginx (not used) - Remove: postgres, redis (used from Docker Hub, not registry) - Eliminates warning messages in cleanup logs
This commit is contained in:
parent
4eed905fb6
commit
eb8547ad9f
1 changed files with 5 additions and 8 deletions
|
|
@ -15,14 +15,11 @@ data:
|
|||
# (alpine for rust, node variants for frontend/admin, etc.). If any of
|
||||
# these are missing the entire build pipeline breaks.
|
||||
BASE_IMAGES = {
|
||||
'alpine',
|
||||
'node',
|
||||
'rust',
|
||||
'busybox',
|
||||
'golang',
|
||||
'nginx',
|
||||
'postgres',
|
||||
'redis',
|
||||
'alpine', # runtime base image
|
||||
'node', # frontend/admin builder
|
||||
'rust', # backend builder
|
||||
# Note: postgres/redis are in docker-compose (Docker Hub), not in registry
|
||||
# busybox/golang/nginx are not used
|
||||
}
|
||||
# Project-image prefix that we DO prune. Anything outside this is sacred.
|
||||
PROJECT_PREFIX = 'nxtgauge-'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue