This commit is contained in:
mmrbnjd
2025-10-03 23:30:01 +03:30
parent ef2cf5ff30
commit 4df6c87012
34 changed files with 908 additions and 555 deletions

48
docker-compose.yml Normal file
View File

@@ -0,0 +1,48 @@
version: '3.9'
services:
webapi:
build:
context: .
dockerfile: back/Dockerfile
image: moadiran.webapi:latest
container_name: moadiran-webapi
environment:
- ASPNETCORE_ENVIRONMENT=Production
ports:
- "1013:8080"
# networks:
# - moadirannet
land:
build:
context: .
dockerfile: moadiran/Dockerfile
image: moadiran.land:latest
container_name: moadiran-land
environment:
- ASPNETCORE_ENVIRONMENT=Production
ports:
- "81:7050"
depends_on:
- webapi
# networks:
# - moadirannet
webapp:
build:
context: .
dockerfile: TaxPayerFull/Dockerfile
image: moadiran.webapp:latest
container_name: moadiran-webapp
ports:
- "82:5107"
depends_on:
- webapi
# networks:
# - moadirannet