Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FusionIAM
FusionIAM
Commits
3cde09ef
Commit
3cde09ef
authored
Sep 07, 2021
by
Clément OUDOT
Browse files
Documentation for Service Desk (
#11
)
parent
5f892fd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
3cde09ef
...
...
@@ -179,6 +179,45 @@ Stop:
podman stop fusioniam-white-pages-nginx fusioniam-white-pages-php-fpm
```
#### FISD
Create the shared directory for socket:
```
mkdir -p run/volumes/sd-run
```
Start:
```
podman run \
--env-file=./run/ENVVAR.example \
-v ./run/volumes/sd-run:/run/php-fpm/ \
--rm=true \
--name=fusioniam-service-desk-php-fpm \
--detach=true \
--no-hosts \
--network=slirp4netns:allow_host_loopback=true \
--entrypoint='["/bin/bash","/run-ct.sh","php-fpm"]' \
gitlab.ow2.org:4567/fusioniam/fusioniam/fusioniam-centos8-service-desk:v0.1
```
```
podman run \
--env-file=./run/ENVVAR.example \
-v ./run/volumes/sd-run:/var/run/php-fpm/ \
--rm=true \
-p 127.0.0.1:8082:8080 \
--name=fusioniam-service-desk-nginx \
--detach=true \
--no-hosts \
--entrypoint='["/bin/bash","/run-ct.sh","nginx"]' \
gitlab.ow2.org:4567/fusioniam/fusioniam/fusioniam-centos8-service-desk:v0.1
```
Stop:
```
podman stop fusioniam-service-desk-nginx fusioniam-service-desk-php-fpm
```
#### FIAM
Create volumes:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment