Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 721 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 721 Bytes

FoxPass Tools

Docker images

We provide different docker images to run our utilities.

API Docker Image

In order to create an image for the API, use the following command:

docker build -f './docker-images/api.Dockerfile' . -t 'foxpass-api'

Now you can run the docker image with:

docker run foxpass-api <action> [<options>]

Use the following command to obtain more help:

docker run foxpass-api

# Help example:
#  Usage:
#    docker run foxpass-api <action> [<options>]
#  Actions: list_groups list_users copy_group posix_user delete_group deactivate_user
#  Examples:
#    docker run foxpass-api copy_group [<options>]
#    docker run foxpass-api deactivate_user [<options>]