Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
conduit-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
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
TE-TEAM1
conduit-backend
Merge requests
!3
docker-compose.yml updated.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
docker-compose.yml updated.
base
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Ghost User
requested to merge
base
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
docker-compose.yml is now up to date.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
e62aa5f4
1 commit,
4 years ago
1 file
+
42
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
docker-compose.yml
0 → 100644
+
42
−
0
Options
# NOTE! Volume "conduit-db" and network "conduit-network" must be created before running "docker-compose up".
# They can be created with the following commands: "docker volume create conduit-db" and "docker network create conduit-network".
version
:
'
3.3'
services
:
mongo
:
image
:
mongo
container_name
:
mongo-cont
volumes
:
-
conduit-db:/data/db
restart
:
always
backend
:
depends_on
:
-
mongo
image
:
gitlab.labranet.jamk.fi:4567/te-team1/conduit-backend:latest
container_name
:
takakontti
ports
:
-
"
8080:3000"
restart
:
always
environment
:
MONGODB_URI
:
mongodb://mongo-cont/conduitdb
SECRET
:
kiasdasdfffdeedda
frontend
:
image
:
gitlab.labranet.jamk.fi:4567/te-team1/conduit-frontend:latest
container_name
:
fronttikontti
ports
:
-
"
4100:4100"
restart
:
always
environment
:
REACT_APP_API_ROOT
:
https://corporation.devopskoulutus.net/api
volumes
:
conduit-db
:
external
:
true
networks
:
default
:
external
:
name
:
conduit-network
\ No newline at end of file
Loading