-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdocker-compose.override.example.yml
More file actions
27 lines (25 loc) · 1007 Bytes
/
docker-compose.override.example.yml
File metadata and controls
27 lines (25 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copy this file to `docker-compose.override.yml` to customize how the API image
# is sourced when running `docker compose up -d`. Compose auto-merges
# `docker-compose.override.yml` on top of `docker-compose.yml`, so no extra `-f`
# flags are needed.
#
# `docker-compose.override.yml` is gitignored, so your local choice stays out
# of version control.
#
# The base `docker-compose.yml` pulls the stable published image
# (`ghcr.io/usnavy13/librecodeinterpreter:main`). Use one of the snippets below
# to switch to the dev channel or to a local build.
services:
api:
# Option 1 — pull the latest dev image:
image: ghcr.io/usnavy13/librecodeinterpreter-dev:latest
pull_policy: always
# Option 2 — build from your local checkout. Comment the `image` and
# `pull_policy` lines above and uncomment the block below, then run:
# docker compose up --build -d
#
# build:
# context: .
# target: app
# image: code-interpreter:nsjail
# pull_policy: never