Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CIUK 24 Logicalis
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Dean Jukes
CIUK 24 Logicalis
Commits
c388b864
Commit
c388b864
authored
4 months ago
by
Arnav Jain
Browse files
Options
Downloads
Patches
Plain Diff
docker file
parent
f7c57185
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker-compose.yml
+44
-0
44 additions, 0 deletions
docker-compose.yml
with
44 additions
and
0 deletions
docker-compose.yml
0 → 100644
+
44
−
0
View file @
c388b864
version
:
'
3.8'
services
:
zookeeper
:
image
:
confluentinc/cp-zookeeper:latest
environment
:
ZOOKEEPER_CLIENT_PORT
:
2181
ports
:
-
"
2181:2181"
kafka
:
image
:
confluentinc/cp-kafka:latest
ports
:
-
"
9092:9092"
environment
:
KAFKA_BROKER_ID
:
1
KAFKA_ZOOKEEPER_CONNECT
:
zookeeper:2181
KAFKA_ADVERTISED_LISTENERS
:
PLAINTEXT://localhost:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR
:
1
depends_on
:
-
zookeeper
prometheus
:
image
:
prom/prometheus:latest
ports
:
-
"
9090:9090"
volumes
:
-
./prometheus.yml:/etc/prometheus/prometheus.yml
grafana
:
image
:
grafana/grafana:latest
ports
:
-
"
3000:3000"
kafka-ui
:
image
:
provectuslabs/kafka-ui:latest
ports
:
-
"
8080:8080"
environment
:
KAFKA_CLUSTERS_0_NAME
:
local
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS
:
kafka:9092
depends_on
:
-
kafka
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