Rafał Developer
Rafał Developer

Reputation: 2045

Active Directory Docker - Windows Authentication Mode

How to connect from windows docker container to Azure Active Directory? My problem: I have to connect to Database (in some server) which take only access as a Windows Authentication Mode but my container is not in domain.

Upvotes: 0

Views: 7149

Answers (1)

krishg
krishg

Reputation: 6508

You need to configure gMSA (group managed service account) for that. Please follow the below guides in sequence:

  1. Create gMSAs for Windows containers
  2. Configure your app to use a gMSA
  3. Run a container with a gMSA
  4. Orchestrate containers with a gMSA

Upvotes: 3

Related Questions