This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/chroma-core/chroma | patch | `1.0.6` -> `1.0.7` | --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODguMyIsInVwZGF0ZWRJblZlciI6IjM5LjE4OC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: #218 Co-authored-by: renovate-bot <renovate-bot@dubas.dev> Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
---
|
|
services:
|
|
nvim:
|
|
build:
|
|
context: .
|
|
args:
|
|
GIT_USER_EMAIL: ${NVIM_GIT_USER_EMAIL:-nobody@example.com}
|
|
GIT_USER_NAME: ${NVIM_GIT_USER_NAME:-noboby}
|
|
image: 'joaodubas/nvim:${NVIM_TAG:-latest}'
|
|
init: true
|
|
restart: unless-stopped
|
|
hostname: local
|
|
pull_policy: never
|
|
entrypoint: sleep
|
|
command: infinity
|
|
environment:
|
|
ANTHROPIC_API_KEY: ${NVIM_ANTHROPIC_API_KEY:-no-api}
|
|
GH_TOKEN: &github_token ${NVIM_GH_TOKEN:-no-token}
|
|
GITHUB_TOKEN: *github_token
|
|
COMPOSE_BAKE: 'true'
|
|
volumes:
|
|
- './config/atuin:/home/coder/.config/atuin'
|
|
- './config/git:/home/coder/.config/git'
|
|
- './config/mise:/home/coder/.config/mise'
|
|
- './config/nvim/lua/custom:/home/coder/.config/nvim/lua/custom'
|
|
- './config/starship:/home/coder/.config/starship'
|
|
- './config/tmux:/home/coder/.config/tmux'
|
|
- './config/tmuxp:/home/coder/.config/tmuxp'
|
|
- 'home_cache:/home/coder/.cache'
|
|
- 'home_local_share:/home/coder/.local/share'
|
|
- 'home_local_state:/home/coder/.local/state'
|
|
- 'home_plugins_tmux:/home/coder/.config/tmux/plugins'
|
|
|
|
chroma:
|
|
image: 'ghcr.io/chroma-core/chroma:1.0.7'
|
|
init: true
|
|
restart: unless-stopped
|
|
hostname: chroma
|
|
environment:
|
|
IS_PERSISTENT: 'true'
|
|
PERSISTENT_DIRECTORY: /data
|
|
volumes:
|
|
- 'chroma_data:/data'
|
|
ports:
|
|
- '${IDE_CHROMA_PORT:-8000}'
|
|
|
|
volumes:
|
|
home_cache: {}
|
|
home_local_share: {}
|
|
home_local_state: {}
|
|
home_plugins_tmux: {}
|
|
chroma_data: {}
|