Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Commits
fd9cfb61
Commit
fd9cfb61
authored
3 years ago
by
Corné Lukken
Browse files
Options
Downloads
Patches
Plain Diff
Docker image build proposal
parent
5f401cd6
No related branches found
Branches containing commit
No related tags found
1 merge request
!183
Docker image building & pushing with CI pipeline caching
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker-compose/README.md
+37
-0
37 additions, 0 deletions
docker-compose/README.md
with
37 additions
and
0 deletions
docker-compose/README.md
0 → 100644
+
37
−
0
View file @
fd9cfb61
# Docker Compose
Documentation on how the LOFAR station control software utilizes docker-compose.
This documentation is intended for developers listing strategies and their
respective advantages and disadvantages. In addition, this documentation
contains developer expectations that they should uphold to.
## Image tagging and change detection
Preventing unnecessary builds of docker images reduces build times and increases
iteration speed. In order to achieve this the project requires properly tagged
images and mechanisms for change detection.
For change detection the system relies on git. Git is used to determine the
directories that have changes between the current and previous commit.
### Types of containers and specific strategies.
-
Devices
-
Simulators
-
Base images
-
Services
Devices, are currently bound to the host upon building due to the intrinsics of
how environment variables are used. They will have to be rebuild and can not be
pulled from a local registry.
Simulators, Since the source code for simulators is maintained by other teams
we can not accurately determine from our repository if the simulator has
changed. Instead, the images should be build by the teams their respective CI
pipelines. We would simply pull these images.
Base images, these are detected by changes to the .env file in the
docker-compose directory.
Services, these are detected by changes to the .yml file or directory of the
respective service inside the docker-compose directory.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment