Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CloudComputing_Act1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Automate
Agent sessions
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jesus Galaz Reyes
CloudComputing_Act1
Merge requests
!15
Resolve "Run the application on Kubernetes locally using “minikube”"
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Run the application on Kubernetes locally using “minikube”"
19-run-the-application-on-kubernetes-locally-using-minikube
into
main
Overview
2
Commits
1
Pipelines
2
Changes
6
All threads resolved!
Thread options
Hide all comments
Merged
Resolve "Run the application on Kubernetes locally using “minikube”"
Jesus Galaz Reyes
requested to merge
19-run-the-application-on-kubernetes-locally-using-minikube
into
main
9 months ago
Overview
2
Commits
1
Pipelines
2
Changes
6
All threads resolved!
Thread options
Hide all comments
Closes
#19 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
92a9d51e
1 commit,
9 months ago
6 files
+
90
−
85
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
docker-compose.yml deleted
100644 → 0
+
0
−
47
View file @ cd71134b
services
:
mongodb
:
image
:
mongo:latest
container_name
:
mongodb
ports
:
-
"
27017:27017"
environment
:
-
MONGO_INITDB_ROOT_USERNAME=${MONGO_INITDB_ROOT_USERNAME}
-
MONGO_INITDB_ROOT_PASSWORD=${MONGO_INITDB_ROOT_PASSWORD}
-
MONGO_INITDB_DATABASE=todo-app
todo-app-1
:
build
:
context
:
.
dockerfile
:
Dockerfile
container_name
:
todo-app-1
ports
:
-
"
3001:3000"
depends_on
:
-
mongodb
environment
:
-
MONGO_URI=${MONGO_URI}
-
PORT=3000
todo-app-2
:
build
:
context
:
.
dockerfile
:
Dockerfile
container_name
:
todo-app-2
ports
:
-
"
3002:3000"
depends_on
:
-
mongodb
environment
:
-
MONGO_URI=${MONGO_URI}
nginx
:
image
:
nginx:latest
container_name
:
nginx
ports
:
-
"
80:80"
depends_on
:
-
todo-app-1
-
todo-app-2
volumes
:
-
"
./nginx.conf:/etc/nginx/nginx.conf:ro"
-
"
/var/log/nginx/access.log:/var/log/nginx/access.log"
Loading