All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m37s
27 lines
999 B
Bash
27 lines
999 B
Bash
DOCKER_REGISTRY=registry.thomas-peterson.de/printshopcreator
|
|
DOCKER_NAMESPACE=docker
|
|
|
|
APP_USER_NAME=application
|
|
APP_USER_ID=10000
|
|
APP_GROUP_ID=10001
|
|
APP_CODE_PATH_CONTAINER=/data/www
|
|
|
|
|
|
DOCKER_SERVICE_NAME_WEB:=web
|
|
DOCKER_SERVICE_NAME_PHP_BASE:=php-base
|
|
DOCKER_SERVICE_NAME_PHP_FPM:=php-fpm
|
|
DOCKER_SERVICE_NAME_PHP_CRON:=php-cron
|
|
DOCKER_SERVICE_NAME_APPLICATION:=application
|
|
DOCKER_SERVICE_NAME_MYSQL:=mysql
|
|
DOCKER_SERVICE_NAME_MONGODB:=mongodb
|
|
|
|
# VM / instance names
|
|
VM_NAME_APPLICATION=$(DOCKER_SERVICE_NAME_APPLICATION)-vm
|
|
VM_NAME_PHP_FPM=$(DOCKER_SERVICE_NAME_PHP_FPM)-vm
|
|
VM_NAME_PHP_CRON=$(DOCKER_SERVICE_NAME_PHP_CRON)-vm
|
|
VM_NAME_WEB=$(DOCKER_SERVICE_NAME_WEB)-vm
|
|
VM_NAME_MYSQL=$(DOCKER_SERVICE_NAME_MYSQL)-vm
|
|
VM_NAME_MONGODB=$(DOCKER_SERVICE_NAME_MONGODB)-vm
|
|
# Helpers
|
|
ALL_VM_SERVICE_NAMES=$(VM_NAME_APPLICATION):$(DOCKER_SERVICE_NAME_APPLICATION) $(VM_NAME_PHP_FPM):$(DOCKER_SERVICE_NAME_PHP_FPM) $(VM_NAME_PsHP_CRON):$(DOCKER_SERVICE_NAME_PHP_CRON) $(VM_NAME_WEB):$(DOCKER_SERVICE_NAME_WEB)
|