Files
abstracto/docker-compose.yaml
Sheldan 980ca9380c [AB-70] moving image generation functionality to separate image generation module
removing doge image generation from default base
split rest-api into separate modules (base and extensions)
2023-12-23 20:41:25 +01:00

20 lines
703 B
YAML

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_base:
build:
context: python/components/rest-api-base
dockerfile: docker/Dockerfile
image: ${REGISTRY_PREFIX}abstracto-rest-api:${VERSION:-latest}
rest_api_image_gen:
build:
context: python/components/image-gen
dockerfile: docker/Dockerfile
image: ${REGISTRY_PREFIX}abstracto-rest-api-image-gen:${VERSION:-latest}