This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
EvoCalculator/docker-compose.dev.yml
2021-04-23 09:49:13 +03:00

19 lines
296 B
YAML

version: '3.3'
services:
proxy:
build:
context: ./EvoCalculator.Proxy
dockerfile: Dockerfile.dev
container_name: proxy
restart: always
ports:
- '80:80'
environment:
- CRM_URL=http://...
networks:
- web
networks:
web:
external: true