Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829
  1. version: '3.4'
  2. services:
  3. spotifyworker:
  4. image: ${DOCKER_REGISTRY-}spotifyworker
  5. build:
  6. context: .
  7. dockerfile: SpotifyWorker/Dockerfile
  8. web:
  9. image: ${DOCKER_REGISTRY-}nemanblazor
  10. build:
  11. context: .
  12. dockerfile: NemAnBlazor/Dockerfile
  13. spotifyservice:
  14. image: ${DOCKER_REGISTRY-}spotifyservice
  15. build:
  16. context: .
  17. dockerfile: SpotifyService/Dockerfile
  18. identityprovider:
  19. image: ${DOCKER_REGISTRY-}identityprovider
  20. build:
  21. context: .
  22. dockerfile: IdentityProvider/Dockerfile