Skip to content
Snippets Groups Projects
Commit 24e12806 authored by Jörn Künsemöller's avatar Jörn Künsemöller Committed by Jorrit Schaap
Browse files

TMSS-138: fixed docker compose setup for OIDC with static IP on bridge network

parent 35ecb4ba
No related branches found
No related tags found
1 merge request!97Resolve TMSS-138
...@@ -12,7 +12,11 @@ services: ...@@ -12,7 +12,11 @@ services:
- "tmss" - "tmss"
environment: environment:
- OIDC_ENDPOINT_HOST=172.25.0.10 - OIDC_ENDPOINT_HOST=172.25.0.10
<<<<<<< HEAD
- OIDC_RP_CLIENT_ID=1 - OIDC_RP_CLIENT_ID=1
=======
- OIDC_RP_CLIENT_ID=2
>>>>>>> TMSS-138: fixed docker compose setup for OIDC with static IP on bridge network
tmss_test_nginx: tmss_test_nginx:
build: build:
context: . context: .
...@@ -20,6 +24,8 @@ services: ...@@ -20,6 +24,8 @@ services:
container_name: tmss_test_nginx container_name: tmss_test_nginx
ports: ports:
- "5005:5005" - "5005:5005"
networks:
- "tmss"
tmss_test_oidc: tmss_test_oidc:
build: build:
context: ../../test/oidc/docker-test-mozilla-django-oidc/ context: ../../test/oidc/docker-test-mozilla-django-oidc/
...@@ -27,6 +33,9 @@ services: ...@@ -27,6 +33,9 @@ services:
container_name: tmss_test_oidc container_name: tmss_test_oidc
ports: ports:
- "8088:8088" - "8088:8088"
networks:
tmss:
ipv4_address: 172.25.0.10
networks: networks:
tmss: tmss:
driver: bridge driver: bridge
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment