Compare commits
1 Commits
43d3d72011
...
dist/debia
Author | SHA1 | Date | |
---|---|---|---|
957a79117b |
2
debian/control
vendored
2
debian/control
vendored
@ -11,4 +11,4 @@ Vcs-Browser: https://forge.cadoles.com/wpetit/goweb-oidc
|
|||||||
Package: mse-oidc-demo
|
Package: mse-oidc-demo
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends}, docker.io, docker-compose
|
Depends: ${misc:Depends}, docker.io, docker-compose
|
||||||
Description: Démo OIDC pour MSE
|
Description: Application de démo oidc MSE
|
||||||
|
4
debian/mse-oidc-demo.service
vendored
4
debian/mse-oidc-demo.service
vendored
@ -7,9 +7,9 @@ StartLimitInterval=0
|
|||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
WorkingDirectory=/srv/mse-oidc-demo/
|
WorkingDirectory=/srv/mse-oidc-demo/
|
||||||
ExecStart=/usr/bin/docker-compose up
|
ExecStart=docker-compose up
|
||||||
ExecStop=/usr/bin/docker-compose down
|
|
||||||
Restart=always
|
Restart=always
|
||||||
|
StartLimitIntervalSec=0
|
||||||
User=root
|
User=root
|
||||||
Group=root
|
Group=root
|
||||||
|
|
||||||
|
6
debian/rules
vendored
Normal file → Executable file
6
debian/rules
vendored
Normal file → Executable file
@ -5,9 +5,5 @@
|
|||||||
#export DH_VERBOSE=1
|
#export DH_VERBOSE=1
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@ --with systemd
|
dh $@
|
||||||
|
|
||||||
override_dh_auto_build:
|
|
||||||
|
|
||||||
override_dh_auto_test:
|
|
||||||
|
|
||||||
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
3.0 (native)
|
@ -1,17 +1,24 @@
|
|||||||
version: "2.4"
|
version: "2.4"
|
||||||
services:
|
services:
|
||||||
oidc-test:
|
oidc-test:
|
||||||
image: reg.cadoles.com/cadoles/goweb-oidc-test
|
build:
|
||||||
|
context: ./
|
||||||
|
dockerfile: ./misc/dokku/Dockerfile
|
||||||
|
args:
|
||||||
|
- HTTP_PROXY=${HTTP_PROXY:-}
|
||||||
|
- HTTPS_PROXY=${HTTPS_PROXY:-}
|
||||||
|
- http_proxy=${http_proxy:-}
|
||||||
|
- https_proxy=${https_proxy:-}
|
||||||
environment:
|
environment:
|
||||||
- LOG_LEVEL=0
|
- LOG_LEVEL=0
|
||||||
- HTTP_ADDRESS=0.0.0.0:3002
|
- HTTP_ADDRESS=0.0.0.0:3002
|
||||||
- OIDC_CLIENT_ID=local-test
|
- OIDC_CLIENT_ID=local-test
|
||||||
- OIDC_CLIENT_SECRET=local-test
|
- OIDC_CLIENT_SECRET=local-test
|
||||||
- OIDC_ISSUER_URL=
|
- OIDC_ISSUER_URL=https://msedev.crous-toulouse.fr/auth/
|
||||||
- OIDC_REDIRECT_URL=http://localhost:3002
|
- OIDC_REDIRECT_URL=http://localhost:3002
|
||||||
- OIDC_POST_LOGOUT_REDIRECT_URL=http://localhost:3002
|
- OIDC_POST_LOGOUT_REDIRECT_URL=http://localhost:3002
|
||||||
- OIDC_ACR_VALUES=
|
- OIDC_ACR_VALUES=
|
||||||
ports:
|
ports:
|
||||||
- 80:3002
|
- 3002:3002
|
||||||
network_mode: host
|
network_mode: host
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user