EOX GitLab Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vs-starter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Data Handling
vs-starter
Commits
8dcfe484
Commit
8dcfe484
authored
3 years ago
by
Bernhard Mallinger
Browse files
Options
Downloads
Patches
Plain Diff
Integrate dev docker compose to generic docker compose
parent
5c73abb3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1
Remove base and logging conf from vs-starter
Pipeline
#20603
passed
3 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vs_starter/templates/docker-compose.dev.yml
+0
-73
0 additions, 73 deletions
vs_starter/templates/docker-compose.dev.yml
vs_starter/templates/docker-compose.instance.yml
+74
-0
74 additions, 0 deletions
vs_starter/templates/docker-compose.instance.yml
with
74 additions
and
73 deletions
vs_starter/templates/docker-compose.dev.yml
deleted
100644 → 0
+
0
−
73
View file @
5c73abb3
version
:
"
3.6"
services
:
database
:
networks
:
-
extnet
ports
:
-
mode
:
host
target
:
5432
published
:
5432
sftp
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_sftp:dev
ingestor
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_ingestor:dev
environment
:
INOTIFY_WATCH_DIR
:
"
/mnt/data/"
REDIS_PREPROCESS_MD_QUEUE_KEY
:
"
preprocess_queue"
fluentd
:
image
:
registry.gitlab.eox.at/esa/prism/vs/fluentd:dev
client
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_client:dev
ports
:
-
mode
:
host
target
:
80
published
:
80
volumes
:
-
type
:
bind
source
:
./client/src/
target
:
/src/
-
type
:
bind
source
:
./config/{{slug}}/{{slug}}_index-dev.html
target
:
/index.html
renderer
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_core:dev
environment
:
DEV
:
"
true"
ports
:
-
mode
:
host
target
:
80
published
:
81
-
mode
:
host
target
:
8080
published
:
82
registrar
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_core:dev
environment
:
DEV
:
"
true"
cache
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_cache:dev
ports
:
-
mode
:
host
target
:
80
published
:
83
configs
:
-
source
:
mapcache-dev
target
:
/mapcache-template.xml
preprocessor
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_preprocessor:dev
environment
:
DEBUG
:
"
true"
volumes
:
-
type
:
tmpfs
target
:
/tmp
-
type
:
bind
source
:
./testing/
target
:
/testing/
ports
:
-
mode
:
host
target
:
5678
published
:
5678
networks
:
extnet
:
name
:
{{
slug
}}
-extnet
external
:
true
This diff is collapsed.
Click to expand it.
vs_starter/templates/docker-compose.instance.yml
+
74
−
0
View file @
8dcfe484
version
:
"
3.6"
x-vs-version
:
{{
release_version
}}
# bumpversion
services
:
{
%
- if environment != "dev" %
}
database
:
volumes
:
-
type
:
tmpfs
...
...
@@ -342,3 +343,76 @@ secrets:
external
:
true
EMG_SHIB_KEY
:
external
:
true
{
%
- else %
}
{
# environment is dev #}
database
:
networks
:
- extnet
ports
:
- mode
:
host
target
:
5432
published
:
5432
sftp
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_sftp
:
dev
ingestor
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_ingestor
:
dev
environment
:
INOTIFY_WATCH_DIR
:
"
/mnt/data/"
REDIS_PREPROCESS_MD_QUEUE_KEY
:
"
preprocess_queue"
fluentd
:
image
:
registry.gitlab.eox.at/esa/prism/vs/fluentd
:
dev
client
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_client
:
dev
ports
:
- mode
:
host
target
:
80
published
:
80
volumes
:
- type
:
bind
source
:
./client/src/
target
:
/src/
- type
:
bind
source
:
./config/
{{
slug
}}
/
{{
slug
}}
_index-dev.html
target
:
/index.html
renderer
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_core
:
dev
environment
:
DEV
:
"
true"
ports
:
- mode
:
host
target
:
80
published
:
81
- mode
:
host
target
:
8080
published
:
82
registrar
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_core
:
dev
environment
:
DEV
:
"
true"
cache
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_cache
:
dev
ports
:
- mode
:
host
target
:
80
published
:
83
configs
:
- source
:
mapcache-dev
target
:
/mapcache-template.xml
preprocessor
:
image
:
registry.gitlab.eox.at/esa/prism/vs/pvs_preprocessor
:
dev
environment
:
DEBUG
:
"
true"
volumes
:
- type
:
tmpfs
target
:
/tmp
- type
:
bind
source
:
./testing/
target
:
/testing/
ports
:
- mode
:
host
target
:
5678
published
:
5678
networks
:
extnet
:
name
:
{{
slug
}}
-extnet
external
:
true
{
%
- endif %
}
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