diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..86f011c --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +version: '3.3' +services: + core: + build: + context: . + dockerfile: ./Dockerfile + networks: + - calc_network + restart: always + environment: + - CALCULATION_IRR=${CORE_CALCULATION_IRR} + - CALCULATION_V2_DATE=${CORE_CALCULATION_V2_DATE} + - CALCULATION_V3_DATE=${CORE_CALCULATION_V3_DATE} + - POST_CALCULATION_V2_DATE=${CORE_POST_CALCULATION_V2_DATE} +networks: + calc_network: + external: + name: calc_network