fb0b664373
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [valeriansaliou/sonic](https://github.com/valeriansaliou/sonic) | minor | `v1.5.1` -> `v1.7.4` | > ❗ **Important** > > Release Notes retrieval for this PR were skipped because no github.com credentials were available. > If you are self-hosted, please see [this instruction](https://github.com/renovatebot/renovate/blob/master/docs/usage/examples/self-hosting.md#githubcom-token-for-release-notes). --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: #11 Co-authored-by: Renovate Bot <renovate@coopcloud.tech> Co-committed-by: Renovate Bot <renovate@coopcloud.tech>
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
---
|
|
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
depends_on:
|
|
- search
|
|
environment:
|
|
- SEARCH_ADAPTER=sonic
|
|
- SONIC_HOST=${STACK_NAME}_search
|
|
- SONIC_PORT=1491
|
|
- SONIC_PASSWORD
|
|
# - SONIC_PASSWORD_FILE=/run/secrets/sonic_password
|
|
# secrets:
|
|
# - sonic_password
|
|
|
|
search:
|
|
image: valeriansaliou/sonic:v1.7.4
|
|
# secrets:
|
|
# - sonic_password
|
|
volumes:
|
|
- "sonic-data:/var/lib/sonic/store"
|
|
networks:
|
|
- internal
|
|
# NOTE: latest versions of Sonic (v1.5.1+) don't have a shell, so we can't have a custom entrypoint script that does pre-startup configuration, so we just need to store the PW in env for now
|
|
# entrypoint: ["/docker-entrypoint.sh"]
|
|
configs:
|
|
- source: sonic_cfg
|
|
target: /etc/sonic.cfg
|
|
mode: 0444
|
|
# - source: sonic_entrypoint
|
|
# target: /docker-entrypoint.sh
|
|
# mode: 0555
|
|
|
|
volumes:
|
|
sonic-data:
|
|
|
|
configs:
|
|
sonic_cfg:
|
|
name: ${STACK_NAME}_sonic_cfg_${SONIC_CFG_VERSION:-v1}
|
|
file: sonic.cfg
|
|
# sonic_entrypoint:
|
|
# name: ${STACK_NAME}_sonic_entrypoint_${SONIC_ENTRYPOINT_VERSION:-v1}
|
|
# file: sonic_entrypoint.sh
|
|
|
|
# secrets:
|
|
# sonic_password:
|
|
# external: true
|
|
# name: ${STACK_NAME}_sonic_password_${SECRET_SONIC_PASSWORD_VERSION:-v1}
|