pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
267 B
13 lines
267 B
#! /usr/bin/env sh
|
|
|
|
# Exit in case of error
|
|
set -e
|
|
|
|
TAG=${TAG} \
|
|
FRONTEND_ENV=${FRONTEND_ENV-production} \
|
|
docker-compose \
|
|
-f docker-compose.deploy.build.yml \
|
|
-f docker-compose.deploy.images.yml \
|
|
config > docker-stack.yml
|
|
|
|
docker-compose -f docker-stack.yml build
|
|
|