Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for esbuild (0.21 sec)

  1. docs/ko/docs/deployment/docker.md

    리눅스 컨테이너를 사용하는 데에는 **보안**, **반복 가능성**, **단순함** 등의 장점이 있습니다.
    
    !!! tip "팁"
        시간에 쫓기고 있고 이미 이런것들을 알고 있다면 [`Dockerfile`👇](#build-a-docker-image-for-fastapi)로 점프할 수 있습니다.
    
    <details>
    <summary>도커파일 미리보기 👀</summary>
    
    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  2. docs/zh/docs/deployment/docker.md

    ```Dockerfile
    COPY ./app /code/app
    ```
    
    ### 构建 Docker 镜像
    
    现在所有文件都已就位,让我们构建容器镜像。
    
    * 转到项目目录(在`Dockerfile`所在的位置,包含`app`目录)。
    * 构建你的 FastAPI 镜像:
    
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    
    !!! tip
        注意最后的 `.`,它相当于`./`,它告诉 Docker 用于构建容器镜像的目录。
    
        在本例中,它是相同的当前目录(`.`)。
    
    ### 启动 Docker 容器
    
    * 根据你的镜像运行容器:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 31.2K bytes
    - Viewed (0)
  3. docs/fr/docs/deployment/docker.md

    * Allez dans le répertoire du projet (dans lequel se trouve votre `Dockerfile`, contenant votre répertoire `app`).
    * Construisez votre image FastAPI :
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    ## Démarrer le conteneur Docker
    
    * Exécutez un conteneur basé sur votre image :
    
    <div class="termy">
    
    ```console
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 7.5K bytes
    - Viewed (0)
  4. docs/ru/docs/deployment/docker.md

    * Перейдите в директорию проекта (в ту, где расположены `Dockerfile` и папка `app` с приложением).
    * Создай образ приложения FastAPI:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip "Подсказка"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  5. docs/ja/docs/deployment/docker.md

    !!! warning
        このベースイメージや類似のイメージは**必要ない**可能性が高いので、[上記の: FastAPI用のDockerイメージをビルドする(Build a Docker Image for FastAPI)](#build-a-docker-image-for-fastapi)のようにゼロからイメージをビルドする方が良いでしょう。
    
    このイメージには、利用可能なCPUコアに基づいて**ワーカー・プロセスの数**を設定する**オートチューニング**メカニズムが含まれています。
    
    これは**賢明なデフォルト**を備えていますが、**環境変数**や設定ファイルを使ってすべての設定を変更したり更新したりすることができます。
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 44.3K bytes
    - Viewed (0)
  6. docs/em/docs/deployment/docker.md

    COPY ./app /code/app
    ```
    
    ### 🏗 ☁ 🖼
    
    🔜 👈 🌐 📁 🥉, ➡️ 🏗 📦 🖼.
    
    * 🚶 🏗 📁 (🌐❔ 👆 `Dockerfile` , ⚗ 👆 `app` 📁).
    * 🏗 👆 FastAPI 🖼:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
        👀 `.` 🔚, ⚫️ 🌓 `./`, ⚫️ 💬 ☁ 📁 ⚙️ 🏗 📦 🖼.
    
        👉 💼, ⚫️ 🎏 ⏮️ 📁 (`.`).
    
    ### ▶️ ☁ 📦
    
    * 🏃 📦 ⚓️ 🔛 👆 🖼:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 27.9K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    ```Dockerfile
    COPY ./app /code/app
    ```
    
    ### Build the Docker Image
    
    Now that all the files are in place, let's build the container image.
    
    * Go to the project directory (in where your `Dockerfile` is, containing your `app` directory).
    * Build your FastAPI image:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/docker.md

    * Gehen Sie zum Projektverzeichnis (dort, wo sich Ihr `Dockerfile` und Ihr `app`-Verzeichnis befindet).
    * Erstellen Sie Ihr FastAPI-Image:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip "Tipp"
        Beachten Sie das `.` am Ende, es entspricht `./` und teilt Docker mit, welches Verzeichnis zum Erstellen des Containerimages verwendet werden soll.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:19:17 GMT 2024
    - 38.9K bytes
    - Viewed (0)
  9. docs/pt/docs/deployment/docker.md

    * Vá para o diretório do projeto (onde está o seu `Dockerfile`, contendo o diretório `app`).
    * Construa sua imagem FastAPI:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
        Note o `.` no final, é equivalente a `./`, ele diz ao Docker o diretório a ser usado para construir a imagem do contêiner.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 37.4K bytes
    - Viewed (0)
Back to top