15 lines
990 B
Bash
Executable File
15 lines
990 B
Bash
Executable File
# torsearch-app is built from this base
|
|
export APP_FRANKENPHP_TAG=php8.4
|
|
|
|
docker buildx build --platform=linux/amd64 -f docker/Dockerfile.base.app -t code.caldwell.digital/home/torsearch-base:${APP_FRANKENPHP_TAG} -t code.caldwell.digital/home/torsearch-base:latest --build-arg "FRANKENPHP_TAG=${APP_FRANKENPHP_TAG}" .
|
|
docker push code.caldwell.digital/home/torsearch-base:${APP_FRANKENPHP_TAG}
|
|
docker push code.caldwell.digital/home/torsearch-base:latest
|
|
|
|
# torsearch-worker & torsearch-scheduler are built from this base
|
|
export WORKER_FRANKENPHP_TAG=php8.4-alpine
|
|
|
|
docker buildx build --platform=linux/amd64 -f docker/Dockerfile.base.worker -t code.caldwell.digital/home/torsearch-base-worker:${WORKER_FRANKENPHP_TAG} -t code.caldwell.digital/home/torsearch-base-worker:latest --build-arg "FRANKENPHP_TAG=${WORKER_FRANKENPHP_TAG}" .
|
|
docker push code.caldwell.digital/home/torsearch-base-worker:${WORKER_FRANKENPHP_TAG}
|
|
docker push code.caldwell.digital/home/torsearch-base-worker:latest
|
|
|