This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# bash completion V2 for docker -*- shell-script -*- | |
__docker_debug() | |
{ | |
if [[ -n ${BASH_COMP_DEBUG_FILE:-} ]]; then | |
echo "$*" >> "${BASH_COMP_DEBUG_FILE}" | |
fi | |
} | |
# Macs have bash3 for which the bash-completion package doesn't include |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
app: | |
image: app-without-curl-inside | |
# app is running a webserver on 8080 | |
app-health: | |
image: curl | |
command: sleep infinity | |
network_mode: "service:app" | |
healthcheck: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
models: | |
llama: | |
model: ai/example-model | |
context-size: 1024 | |
runtime-flags: "--no-prefill-assistant" | |
services: | |
# Option 1 : by host alias | |
app: |
OlderNewer