Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 383 for Blocker (0.06 seconds)

  1. docs/de/docs/deployment/concepts.md

    /// tip | Tipp
    
    Machen Sie sich keine Sorgen, wenn einige dieser Punkte zu **Containern**, Docker oder Kubernetes noch nicht viel Sinn ergeben.
    
    Ich werde Ihnen in einem zukünftigen Kapitel mehr über Container-Images, Docker, Kubernetes, usw. erzählen: [FastAPI in Containern – Docker](docker.md).
    
    ///
    
    ## Schritte vor dem Start { #previous-steps-before-starting }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  2. docs/en/docs/deployment/concepts.md

    /// tip
    
    Don't worry if some of these items about **containers**, Docker, or Kubernetes don't make a lot of sense yet.
    
    I'll tell you more about container images, Docker, Kubernetes, etc. in a future chapter: [FastAPI in Containers - Docker](docker.md).
    
    ///
    
    ## Previous Steps Before Starting { #previous-steps-before-starting }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 18.5K bytes
    - Click Count (1)
  3. docs/site-replication/ldap.yaml

    # To run locally an OpenLDAP instance using Docker
    # $ docker-compose -f ldap.yaml up -d
    version: '3.7'
    
    services:
      openldap:
        image: quay.io/minio/openldap
        ports:
          - "389:389"
          - "636:636"
        environment:
          LDAP_ORGANIZATION: "MinIO Inc"
          LDAP_DOMAIN: "min.io"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Dec 09 01:34:52 GMT 2021
    - 325 bytes
    - Click Count (0)
  4. .github/workflows/arm-cd.yml

            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
          - name: Clean repository
            shell: bash
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Jan 01 08:09:03 GMT 2026
    - 3K bytes
    - Click Count (0)
  5. docs/ko/docs/project-generation.md

        - 🧪 End-to-End 테스트를 위한 [Playwright](https://playwright.dev).
        - 🦇 다크 모드 지원.
    - 🐋 개발 환경과 프로덕션(운영)을 위한 [Docker Compose](https://www.docker.com).
    - 🔒 기본으로 지원되는 안전한 비밀번호 해싱.
    - 🔑 JWT (JSON Web Token) 인증.
    - 📫 이메일 기반 비밀번호 복구.
    - ✅ [Pytest](https://pytest.org)를 이용한 테스트.
    - 📞 리버스 프록시 / 로드 밸런서로서의 [Traefik](https://traefik.io).
    - 🚢 Docker Compose를 이용한 배포 지침: 자동 HTTPS 인증서를 처리하기 위한 프론트엔드 Traefik 프록시 설정 방법을 포함.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  6. docs/multi-tenancy/README.md

    # MinIO Multi-Tenant Deployment Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/)
    
    This topic provides commands to set up different configurations of hosts, nodes, and drives. The examples provided here can be used as a starting point for other configurations.
    
    1. [Standalone Deployment](#standalone-deployment)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  7. docs/fr/docs/deployment/concepts.md

    /// tip | Astuce
    
    Ne vous inquiétez pas si certains de ces éléments concernant les **conteneurs**, Docker ou Kubernetes ne sont pas encore très clairs.
    
    Je vous en dirai plus sur les images de conteneurs, Docker, Kubernetes, etc. dans un chapitre à venir : [FastAPI dans des conteneurs - Docker](docker.md).
    
    ///
    
    ## Étapes préalables avant de démarrer { #previous-steps-before-starting }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  8. docs/ja/docs/deployment/server-workers.md

    * **セキュリティ - HTTPS**
    * **起動時の実行**
    * ***再起動***
    * レプリケーション(実行中のプロセス数)
    * **メモリ**
    * **開始前の事前ステップ**
    
    ## コンテナとDocker { #containers-and-docker }
    
    次章の[コンテナ内のFastAPI - Docker](docker.md)では、その他の**デプロイメントのコンセプト**を扱うために使える戦略をいくつか説明します。
    
    単一のUvicornプロセスを実行するために、**ゼロから独自のイメージを構築する**方法も紹介します。これは簡単なプロセスで、**Kubernetes**のような分散コンテナ管理システムを使う場合に、おそらくやりたいことでしょう。
    
    ## まとめ { #recap }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  9. .github/workflows/tests.yml

              while [ $retry_count -lt $max_retries ]; do
                if docker exec -i "${container_name}" bash -c "su - omm -c 'gsql -U omm -c \"select 1;\"'" 
                then
                  echo "Creating database gorm..."
                  sql_file='/tmp/create_database.sql'
                  echo "CREATE DATABASE gorm DBCOMPATIBILITY 'PG';" > ${sql_file}
                  docker cp "${sql_file}" "${container_name}":"${sql_file}"
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Mon Mar 23 10:05:06 GMT 2026
    - 9K bytes
    - Click Count (0)
  10. CONTRIBUTING.md

    # MinIO Contribution Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/)
    
    ``MinIO`` community welcomes your contribution. To make the process as seamless as possible, we recommend you read this contribution guide.
    
    ## Development Workflow
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Aug 05 18:35:53 GMT 2024
    - 2.9K bytes
    - Click Count (0)
Back to Top