From da94ed6d89ac2b933718419bbe42f2d913514231 Mon Sep 17 00:00:00 2001 From: Sergey Chebotar Date: Wed, 14 Dec 2022 09:53:10 +0300 Subject: Init commit --- RhSolutions.Deploy/docker-compose.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 RhSolutions.Deploy/docker-compose.yml (limited to 'RhSolutions.Deploy/docker-compose.yml') diff --git a/RhSolutions.Deploy/docker-compose.yml b/RhSolutions.Deploy/docker-compose.yml new file mode 100644 index 0000000..b5f4ebc --- /dev/null +++ b/RhSolutions.Deploy/docker-compose.yml @@ -0,0 +1,31 @@ +version: '3' + +services: + + rhsolutions-api: + build: ../RhSolutions.Api + container_name: rhsolutions-api + ports: + - 5000:5000 + environment: + - DB_HOST=rhsolutions-db + - DB_PORT=5432 + - DB_DATABASE=rhsolutions + - DB_USER=chebser + - DB_PASSWORD=Rehau-987 + depends_on: + - rhsolutions-db + restart: unless-stopped + + rhsolutions-db: + container_name: rhsolutions-db + build: ./database + environment: + - POSTGRES_USER=chebser + - POSTGRES_PASSWORD=Rehau-987 + - POSTGRES_DB=rhsolutions + restart: unless-stopped + +networks: + default: + name: rhsolutions \ No newline at end of file -- cgit v1.2.3