[AB-xxx] refactoring rest-api to not be a maven project and restructuring python tool file structure

This commit is contained in:
Sheldan
2023-12-20 21:04:35 +01:00
parent 474e632fed
commit e9d14ac417
31 changed files with 46 additions and 68 deletions

14
docker-compose.yaml Normal file
View File

@@ -0,0 +1,14 @@
version: "3.7"
services:
config_deployment:
build: python/deployment/installer/config-deployment
image: ${REGISTRY_PREFIX}abstracto-db-deployment:${VERSION:-latest}
template_deployment:
build: python/deployment/installer/template-deployment
image: ${REGISTRY_PREFIX}abstracto-template-deployment:${VERSION:-latest}
rest_api:
build:
context: python/components/rest-api
dockerfile: docker/Dockerfile
image: ${REGISTRY_PREFIX}abstracto-rest-api:${VERSION:-latest}