Skip to content

Commit

Permalink
Merge pull request #25 from QuickBlox/dev/v2.0.0-alpha.5
Browse files Browse the repository at this point in the history
Release v2.0.0-alpha.5
  • Loading branch information
andrii-khomutovskyi-qb authored Oct 6, 2023
2 parents dd2ef7b + 7382a54 commit f36ecf0
Show file tree
Hide file tree
Showing 52 changed files with 1,480 additions and 1,048 deletions.
45 changes: 45 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
version: '3.8'
services:
api:
container_name: qc-api
build:
context: ./packages/api
restart: always
ports:
- 4000:4000
volumes:
- ./qconsultation_config/.env:/app/qconsultation_config/.env
networks:
- qcNetwork

provider:
container_name: qc-provider
build:
context: ./packages/provider
restart: always
ports:
- 3000:3000
volumes:
- ./qconsultation_config/.env:/app/qconsultation_config/.env
depends_on:
- api
networks:
- qcNetwork

client:
container_name: qc-client
build:
context: ./packages/client
restart: always
ports:
- 3001:3001
volumes:
- ./qconsultation_config/.env:/app/qconsultation_config/.env
depends_on:
- api
networks:
- qcNetwork

networks:
qcNetwork:
driver: bridge
Loading

0 comments on commit f36ecf0

Please sign in to comment.