Skip to content

Commit f52ba84

Browse files
[docker] Use build for Cuebot in docker-compose for development (#2032)
**Link the Issue(s) this Pull Request is related to.** - #2031 **Summarize your change.** [docker] Use build for Cuebot in docker-compose for development Update docker-compose.yml to build Cuebot from source by default instead of using pre-built image. This ensures the latest code changes are included in the container. Add comments to explain when to use: - build: Compile from source with latest code (recommended for development) - image: Pre-built image for faster startup (commented out) This fixes issues where the client spec version is newer than the server DTD version when using outdated pre-built images. See Cuebot the latest changes in: - #2001
1 parent c4150f5 commit f52ba84

File tree

80 files changed

+90
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+90
-85
lines changed

docker-compose.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ services:
2727
command: /opt/scripts/migrate.sh
2828

2929
cuebot:
30-
image: opencue/cuebot
30+
# Use build to compile from source with latest code (recommended for development)
31+
build:
32+
context: ./
33+
dockerfile: ./cuebot/Dockerfile
34+
# Use image for faster startup with pre-built image (uncomment to use)
35+
# image: opencue/cuebot
3136
links:
3237
- db
3338
ports:

docs/_docs/concepts/command-execution.md

Lines changed: 1 addition & 1 deletion

docs/_docs/concepts/cueweb-rest-gateway.md

Lines changed: 1 addition & 1 deletion

docs/_docs/concepts/glossary.md

Lines changed: 1 addition & 1 deletion

docs/_docs/concepts/index.md

Lines changed: 1 addition & 1 deletion

docs/_docs/concepts/nimby.md

Lines changed: 1 addition & 1 deletion

docs/_docs/concepts/opencue-overview.md

Lines changed: 1 addition & 1 deletion

docs/_docs/concepts/spi-case-study.md

Lines changed: 1 addition & 1 deletion

docs/_docs/concepts/versioning.md

Lines changed: 1 addition & 1 deletion

docs/_docs/developer-guide/contributing.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)