Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
frontend-vue-2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Bioinformatics
frontend-vue-2
Merge requests
!1
Resolve "Move frontend to separate project"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Move frontend to separate project"
1-move-frontend-to-separate-project
into
main
Overview
1
Commits
11
Pipelines
8
Changes
116
Merged
xkoloma1
requested to merge
1-move-frontend-to-separate-project
into
main
1 year ago
Overview
1
Commits
11
Pipelines
8
Changes
1
Expand
Closes
#1 (closed)
0
0
Merge request reports
Compare
version 5
version 6
f71f46ca
1 year ago
version 5
7550cac2
1 year ago
version 4
9d5f3ee1
1 year ago
version 3
9f4b0adf
1 year ago
version 2
aa543ac7
1 year ago
version 1
a931f790
1 year ago
main (base)
and
version 6
latest version
fa3cbb01
11 commits,
1 year ago
version 6
f71f46ca
10 commits,
1 year ago
version 5
7550cac2
8 commits,
1 year ago
version 4
9d5f3ee1
7 commits,
1 year ago
version 3
9f4b0adf
6 commits,
1 year ago
version 2
aa543ac7
5 commits,
1 year ago
version 1
a931f790
2 commits,
1 year ago
Show latest version
1 file
+
61
−
0
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
docker-compose.yml
0 → 100644
+
61
−
0
Options
version
:
'
3.0'
services
:
gateway
:
image
:
dnapef/gateway:${TAG:-latest}
depends_on
:
-
backend
ports
:
-
443:8443
volumes
:
-
gateway_config:/workspace/config
redirect
:
image
:
dnapef/redirect
ports
:
-
80:80
backend
:
image
:
dnapef/backend:${TAG:-latest}
depends_on
:
-
postgres
volumes
:
-
backend_db:/home/app/db
-
backend_logs:/home/app/logs
-
backend_config:/home/app/config
postgres
:
image
:
postgres:13
environment
:
POSTGRES_DB
:
dna_analyser
POSTGRES_USER
:
${POSTGRES_USER:-developer}
POSTGRES_PASSWORD
:
${POSTGRES_PASSWORD:-password}
PGDATA
:
/data/postgres
volumes
:
-
postgres:/data/postgres
ports
:
-
5432:5432
pgadmin
:
image
:
dpage/pgadmin4:latest
depends_on
:
-
postgres
environment
:
PGADMIN_DEFAULT_EMAIL
:
${PGADMIN_DEFAULT_EMAIL:-user@mendelu.cz}
PGADMIN_DEFAULT_PASSWORD
:
${PGADMIN_DEFAULT_PASSWORD:-user}
volumes
:
-
pgadmin:/root/.pgadmin
ports
:
-
5050:80
volumes
:
postgres
:
pgadmin
:
gateway_config
:
backend_db
:
backend_logs
:
backend_config
: