Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for CMD (0.81 sec)

  1. docs/em/docs/deployment/docker.md

    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    
    # If running behind a proxy like Nginx or Traefik add --proxy-headers
    # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## ⚫️❔ 📦
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    Make sure to **always** use the **exec form** of the `CMD` instruction, as explained below.
    
    ///
    
    #### Use `CMD` - Exec Form { #use-cmd-exec-form }
    
    The <a href="https://docs.docker.com/reference/dockerfile/#cmd" class="external-link" target="_blank">`CMD`</a> Docker instruction can be written using two forms:
    
    ✅ **Exec** form:
    
    ```Dockerfile
    # ✅ Do this
    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  3. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            for (final String cmd : processedCommands) {
                assertFalse("Command should not contain ${url}", cmd.contains("${url}"));
                assertFalse("Command should not contain ${outputFile}", cmd.contains("${outputFile}"));
                assertTrue("Command should contain temp path", cmd.contains(tempPath));
                assertTrue("Command should contain output path", cmd.contains(outputPath));
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  4. docs/es/docs/deployment/docker.md

    Asegúrate de **siempre** usar la **forma exec** de la instrucción `CMD`, como se explica a continuación.
    
    ///
    
    #### Usar `CMD` - Forma Exec
    
    La instrucción Docker <a href="https://docs.docker.com/reference/dockerfile/#cmd" class="external-link" target="_blank">`CMD`</a> se puede escribir usando dos formas:
    
    ✅ **Forma Exec**:
    
    ```Dockerfile
    # ✅ Haz esto
    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:15:52 UTC 2025
    - 31K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

        @Override
        public int getBatchLimit(final String cmd) {
            Integer set = this.batchLimits.get(cmd);
            if (set != null) {
                return set;
            }
    
            set = doGetBatchLimit(cmd);
            if (set != null) {
                this.batchLimits.put(cmd, set);
                return set;
            }
    
            set = DEFAULT_BATCH_LIMITS.get(cmd);
            if (set != null) {
                return set;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  6. docs/pt/docs/deployment/docker.md

    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    
    # If running behind a proxy like Nginx or Traefik add --proxy-headers
    # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## O que é um Contêiner
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/config/BaseConfigurationTest.java

            BaseConfiguration customConfig = new BaseConfiguration(false) {
                @Override
                protected Integer doGetBatchLimit(String cmd) {
                    if ("CustomCommand".equals(cmd)) {
                        return 5;
                    }
                    return null;
                }
            };
    
            assertEquals(5, customConfig.getBatchLimit("CustomCommand"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/docker.md

    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    
    # Wenn Sie hinter einem Proxy wie Nginx oder Traefik sind, fügen Sie --proxy-headers hinzu
    # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## Was ist ein Container?
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 38.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/config/DelegatingConfiguration.java

        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getBatchLimit(java.lang.String)
         */
        @Override
        public int getBatchLimit(final String cmd) {
            return this.delegate.getBatchLimit(cmd);
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isAllowCompound(java.lang.String)
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java

            // Override getBatchLimit to allow batching
            testBlock = new TestAndXServerMessageBlock(mockConfig, (byte) 0x25, andxBlock) {
                @Override
                protected int getBatchLimit(Configuration cfg, byte cmd) {
                    return 1; // Allow one batched message
                }
            };
    
            byte[] buffer = new byte[1024];
            int length = testBlock.encode(buffer, 0);
    
            assertTrue(length > 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
Back to top