EvoCalculator.Client2/docker-compose.yml
2023-01-10 14:46:27 +03:00

20 lines
373 B
YAML

version: '3'
services:
web:
container_name: web
build:
context: .
dockerfile: ./apps/web/Dockerfile
restart: always
ports:
- 3000:3000
networks:
- app_network
# Define a network, which allows containers to communicate
# with each other, by using their container name as a hostname
networks:
app_network:
external: true