Skip to content

Commit

Permalink
docker compose files
Browse files Browse the repository at this point in the history
  • Loading branch information
hirurg-lybitel committed Oct 16, 2024
1 parent 2f99100 commit c4f93da
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker-compose.build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
version: "3.8"
services:
redis:
image: redis
container_name: session-store
restart: always
ports:
- "6379:6379"
networks:
- proxy_network

client:
image: ghcr.io/hirurg-lybitel/gdmn-crm-client:latest
container_name: crm_client
Expand Down Expand Up @@ -38,6 +47,8 @@ services:
target: server
args:
- NX_BRANCH=dockering
depends_on:
- redis
container_name: crm_server
ports:
- "${NX_SERVER_PORT}:${NX_SERVER_PORT}"
Expand Down
11 changes: 11 additions & 0 deletions docker-compose.run.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
services:
redis:
image: redis
container_name: session-store
restart: always
ports:
- "6379:6379"
networks:
- proxy_network

client:
image: ghcr.io/hirurg-lybitel/gdmn-crm-client:latest
container_name: crm_client
Expand All @@ -14,6 +23,8 @@ services:

server:
image: ghcr.io/hirurg-lybitel/gdmn-crm-server:latest
depends_on:
- redis
container_name: crm_server
ports:
- "${NX_SERVER_PORT}:${NX_SERVER_PORT}"
Expand Down

0 comments on commit c4f93da

Please sign in to comment.