mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-01 23:35:29 +00:00
removing doge image generation from default base split rest-api into separate modules (base and extensions)
20 lines
703 B
YAML
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}
|