- Flask API with full CRUD for flows - Execute flow with OK->FELDMAN / incidencia->MASON routing - PostgreSQL integration with host DB - Docker deployment on port 5052 - S-CONTRACT v2.1 compliant
26 lines
496 B
YAML
26 lines
496 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
jared:
|
|
build: .
|
|
container_name: jared-service
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5052:5052"
|
|
environment:
|
|
- H_INSTANCIA=${H_INSTANCIA}
|
|
- DB_HOST=${DB_HOST}
|
|
- DB_PORT=${DB_PORT}
|
|
- DB_NAME=${DB_NAME}
|
|
- DB_USER=${DB_USER}
|
|
- DB_PASSWORD=${DB_PASSWORD}
|
|
- PORT=5052
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
networks:
|
|
- tzzr-network
|
|
|
|
networks:
|
|
tzzr-network:
|
|
external: true
|