Skip to content

Commit

Permalink
chore: updates EPS for dev environment to 0.2.6 and uses environment …
Browse files Browse the repository at this point in the history
…variables with `.env` now
  • Loading branch information
jekutzsche committed Mar 28, 2022
1 parent 6750c3b commit 6ea27c6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions iris-client-eps/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
LOCAL_MOUNT_DIR=.
CLIENT_VERSION=develop
EPS_VERSION=v0.2.6
28 changes: 14 additions & 14 deletions iris-client-eps/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,55 +6,55 @@ version: '3'
services:

ls-1:
image: inoeg/eps:v0.2.1
image: inoeg/eps:${EPS_VERSION}
expose:
- 4445
- 5555
ports:
- 4445:4445
- 5555:5555
volumes:
- ./settings:/app/settings
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/ls-1
command: [ "--level", "debug", "server", "run" ]
extra_hosts:
- "host.docker.internal:host-gateway"

demo-app:
image: inoeg/eps:v0.2.1
image: inoeg/eps:${EPS_VERSION}
expose:
- 4444
- 5554
ports:
- 4444:4444
- 5554:5554
volumes:
- ./settings:/app/settings
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/demo-app
command: [ "--level", "debug", "server", "run" ]
extra_hosts:
- "host.docker.internal:host-gateway"

hd-1:
image: inoeg/eps:v0.2.1
image: inoeg/eps:${EPS_VERSION}
expose:
- 4446
- 5556
ports:
- 4446:4446
- 5556:5556
volumes:
- ./settings:/app/settings
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/hd-1
command: [ "--level", "debug", "server", "run" ]
extra_hosts:
- "host.docker.internal:host-gateway"

public-proxy:
image: inoeg/proxy:v0.2.1
image: inoeg/proxy:${EPS_VERSION}
expose:
- 4433
- 9999
Expand All @@ -64,43 +64,43 @@ services:
- 9999:9999
- 6655:6655
volumes:
- ./settings:/app/settings
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
- ./pub-proxy-db:/tmp # to make proxy db persistant
environment:
- PROXY_SETTINGS=settings/dev/roles/public-proxy-1
command: [ "--level", "debug", "run", "public" ]

public-proxy-eps:
image: inoeg/eps:v0.2.1
image: inoeg/eps:${EPS_VERSION}
expose:
- 5559
- 5544
volumes:
- ./settings:/app/settings
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/public-proxy-eps-1
command: [ "--level", "debug", "server", "run" ]

private-proxy:
image: inoeg/proxy:v0.2.1
image: inoeg/proxy:${EPS_VERSION}
expose:
- 8877
volumes:
- ./settings:/app/settings
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
- ./private-proxy-db:/tmp # to make proxy db persistant
environment:
- PROXY_SETTINGS=settings/dev/roles/private-proxy-1
command: [ "--level", "debug", "run", "private" ]

private-proxy-1:
image: inoeg/eps:v0.2.1
image: inoeg/eps:${EPS_VERSION}
expose:
- 7766
- 7776
ports:
- 7766:7766
volumes:
- ./settings:/app/settings
- ${LOCAL_MOUNT_DIR}/settings:/app/settings
environment:
- EPS_SETTINGS=settings/dev/roles/private-proxy-eps-1
command: [ "--level", "debug", "server", "run" ]

0 comments on commit 6ea27c6

Please sign in to comment.