Prerequisites
Deployment Steps
- Create a
docker-compose.yml
file with the following content:
-
Replace
your-secure-api-key
with a strong API key. This key will be used to secure your Identety deployment. - Start the services using Docker Compose:
- Access the Identety API at
http://localhost:3000
. You can now start making API requests to the Identety endpoints.
Manual Docker Setup
If you prefer to run Identety using Docker without Docker Compose, you can use the following command:<your-database-url>
with the URL of your PostgreSQL database. For example:
If you want to pass locallly installed postgresql url to docker contaier, use
host.docker.internal:
as host name.For example:
postgresql://user:password@localhost:5432/identety
will be changed to postgresql://user:password@host.docker.internal:5432/identety
Next Steps
With Identety up and running, you can now:- Configure your authentication providers
- Register client applications
- Define roles and permissions
- Integrate Identety into your applications