Warning: this container under strong development. Be careful!
- You need Docker enviroment on your machine
docker build -t szabogyula/saml-webapp-runner .
Set resolving
Edit your /etc/hosts
file in your machine. All hostnames project.local
must show to local Docker IP address, which is usually 192.168.99.100 project.local
or on Ubuntu 16.04 127.0.0.1 project.local
You can override the default project.local hostname by environment variable: PROJECT_HOSTNAME
example:
docker run -d -p 80:80 -p 443:443 -p 8080:8080 -e PROJECT_HOSTNAME=example.com -v /path/to/webapp_project:/var/www/project szabogyula/saml-webapp-runner
Own logfiles to tailon Provide your interest logfiles into the LOGFILES environment variable, separate with commas:
docker run -d -p 80:80 -p 443:443 -p 8080:8080 -e LOGFILES=/var/www/project/var/logs/dev.log,/var/www/project/var/logs/prod.log -v /path/to/webapp_project:/var/www/project szabogyula/saml-webapp-runner
Run the docker container
Run for development (adjust the example hostnames before running!): docker run -d -p 80:80 -p 443:443 -p 8080:8080 --add-host project.local:127.0.0.1 -v /path/to/webapp_project:/var/www/project szabogyula/saml-webapp-runner
Set the DocumentRoot
You can set the relative document root instead of web
by set DOCUMENT_ROOT
environment variable.
in case of html directory:
... -e DOCUMENT_ROOT=/var/www/project/html ...
Access the webapp
- 80 and 443 port is the application, and there is a tailon at 8080 port
Filebeat If you mount a correct /tmp/filebeat.yml, the filebeat will be start with these configuration.
docker run ... -v /path/to/filebeat.yml:/tmp/filebeat.yml ...
Xdebug
The xdebug is installed into php. You have to set an alias to your ethernet interface 10.254.254.254 ip address.
On Mac: sudo ifconfig lo0 alias 10.254.254.254
In PHPstorm you should set Preferences > Debug > DBGp proxy
- host: 10.254.254.254
- port: 9000
- ide key: PHPSTORM
IdP users
The users and his attributes that you can use.
's:pass' => array(
'eduPersonPrincipalName' => array('[email protected]'),
'eduPersonScopedAffiliation' => array('[email protected]', '[email protected]'),
'mail' => array('[email protected]'),
'displayName' => 'Student Student',
'eduPersonEntitlement' => array('a:permission:a'),
),
'e:pass' => array(
'eduPersonPrincipalName' => array('[email protected]'),
'eduPersonScopedAffiliation' => array('[email protected]', '[email protected]'),
'mail' => array('[email protected]'),
'displayName' => 'Employee Employee',
'eduPersonEntitlement' => array('a:permission:b'),
),
'snolocal:pass' => array(
'eduPersonPrincipalName' => array('[email protected]'),
'eduPersonScopedAffiliation' => array('[email protected]', '[email protected]'),
'mail' => array('[email protected]'),
'displayName' => 'Student Student',
'eduPersonEntitlement' => array('b:permission:a'),
),
'enolocal:pass' => array(
'eduPersonPrincipalName' => array('[email protected]'),
'eduPersonScopedAffiliation' => array('[email protected]', '[email protected]'),
'mail' => array('[email protected]'),
'displayName' => 'Employee Employee',
'eduPersonEntitlement' => array('b:permission:b'),
),
=======
![architecture][doc/architectire_diagram.png] [doc/architectire_diagram.png]: