26 lines
613 B
YAML
26 lines
613 B
YAML
services:
|
|
digifi-core:
|
|
image: "registry.simbrellang.net/digifi/banktoproductcore:latest"
|
|
# build:
|
|
# dockerfile: Dockerfile
|
|
env_file:
|
|
- .env.core
|
|
ports:
|
|
- "${APP_PORT:-4500}:5000"
|
|
environment:
|
|
- FLASK_APP=wsgi.py
|
|
- FLASK_ENV=production
|
|
- SQLALCHEMY_DATABASE_URI_FULL="oracle+oracledb://FIRSTADVSTG:Pchanged_56789@10.2.110.30:1521/?service_name=firstadv"
|
|
volumes:
|
|
- .:/app
|
|
#network_mode: "host" # Uses the host's network
|
|
restart: always
|
|
|
|
|
|
#networks:
|
|
# default:
|
|
# driver: bridge
|
|
# ipam:
|
|
# config:
|
|
# - subnet: 10.244.0.0/26
|