Added event composer

This commit is contained in:
CHIEFSOFT\ameye
2025-10-06 06:49:17 -04:00
parent be53d8a4c5
commit fbf30471f0
8 changed files with 396 additions and 4 deletions
+33
View File
@@ -0,0 +1,33 @@
version: "3.8"
services:
digifi-event:
image: "registry.simbrellang.net/digifi/eventmanager:latest"
build: .
env_file:
- .env.event
ports:
- "5000:5000"
environment:
- FLASK_APP=app.py
- FLASK_RUN_HOST=0.0.0.0
volumes:
- .:/app
restart: always
networks:
- digital
swagger:
image: swaggerapi/swagger-ui:v5.1.0
ports:
- "9000:8080"
volumes:
- ./openapi.yml:/usr/local/openapi.yml
environment:
- SWAGGER_JSON=/usr/local/openapi.yml
restart: always
networks:
- digital
networks:
digital:
driver: bridge