Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Docker Orchestration
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
DevOps & Tooling
Docker Orchestration
Commits
88bbe201
Commit
88bbe201
authored
4 years ago
by
Daniel Gerhardt
Browse files
Options
Downloads
Patches
Plain Diff
Add env var for GitLab project group
parent
734660ee
Branches
master
Branches containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.env
+1
-0
1 addition, 0 deletions
.env
README.adoc
+1
-0
1 addition, 0 deletions
README.adoc
docker-compose.dev.yml
+1
-1
1 addition, 1 deletion
docker-compose.dev.yml
docker-compose.yml
+7
-7
7 additions, 7 deletions
docker-compose.yml
with
10 additions
and
8 deletions
.env
+
1
−
0
View file @
88bbe201
COMPOSE_PROJECT_NAME=particify
PORT=80
REGISTRY=registry.gitlab.com
PROJECT_GROUP=arsnova
CORE_TAG=master
WSGW_TAG=master
COMMENT_TAG=master
...
...
This diff is collapsed.
Click to expand it.
README.adoc
+
1
−
0
View file @
88bbe201
...
...
@@ -31,6 +31,7 @@ The default configuration can be adjusted via environment variables:
|Variable |Default value |Description
|PORT |80 |Port used for the frontend proxy
|REGISTRY |registry.gitlab.com |Registry host
|PROJECT_GROUP |arsnova |GitLab project group
|CORE_TAG |master |Docker tag (repository branch) for Core Backend
|WSGW_TAG |master |Docker tag (repository branch) for WebSocket Gateway
|COMMENT_TAG |master |Docker tag (repository branch) for Comment Service
...
...
This diff is collapsed.
Click to expand it.
docker-compose.dev.yml
+
1
−
1
View file @
88bbe201
...
...
@@ -8,7 +8,7 @@ services:
-
127.0.0.1:5432:5432
rabbitmq
:
#build: ./rabbitmq-stomp
image
:
$REGISTRY/
arsnova
/devops/docker-orchestration/rabbitmq-stomp:3.8-management
image
:
$REGISTRY/
$PROJECT_GROUP
/devops/docker-orchestration/rabbitmq-stomp:3.8-management
ports
:
-
127.0.0.1:5672:5672
-
127.0.0.1:15672:15672
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
7
−
7
View file @
88bbe201
...
...
@@ -16,12 +16,12 @@ services:
volumes
:
-
postgresql_data:/var/lib/postgresql/data
rabbitmq
:
image
:
$REGISTRY/
arsnova
/devops/docker-orchestration/rabbitmq-stomp:3.8
image
:
$REGISTRY/
$PROJECT_GROUP
/devops/docker-orchestration/rabbitmq-stomp:3.8
environment
:
RABBITMQ_DEFAULT_USER
:
guest
RABBITMQ_DEFAULT_PASS
:
guest
arsnova-backend-core
:
image
:
$REGISTRY/
arsnova
/arsnova-backend:$CORE_TAG
image
:
$REGISTRY/
$PROJECT_GROUP
/arsnova-backend:$CORE_TAG
depends_on
:
-
couchdb
-
rabbitmq
...
...
@@ -41,7 +41,7 @@ services:
UI_SLOGAN
:
powered by particify.de
command
:
/jetty/start.jar --module=http-forwarded
arsnova-ws-gateway
:
image
:
$REGISTRY/
arsnova
/arsnova-ws-gateway:$WSGW_TAG
image
:
$REGISTRY/
$PROJECT_GROUP
/arsnova-ws-gateway:$WSGW_TAG
depends_on
:
-
rabbitmq
environment
:
...
...
@@ -51,7 +51,7 @@ services:
STOMP_RELAY_PASSWORD
:
guest
command
:
/jetty/start.jar --module=http-forwarded
arsnova-comment-service
:
image
:
$REGISTRY/
arsnova
/arsnova-comment-service:$COMMENT_TAG
image
:
$REGISTRY/
$PROJECT_GROUP
/arsnova-comment-service:$COMMENT_TAG
depends_on
:
-
postgresql
-
rabbitmq
...
...
@@ -64,11 +64,11 @@ services:
SPRING_RABBITMQ_PASSWORD
:
guest
command
:
/jetty/start.jar --module=http-forwarded
arsnova-web
:
image
:
$REGISTRY/
arsnova
/arsnova-webclient:$WEB_TAG
image
:
$REGISTRY/
$PROJECT_GROUP
/arsnova-webclient:$WEB_TAG
arsnova-web-legacy
:
image
:
$REGISTRY/
arsnova
/devops/docker-orchestration/arsnova-mobile:$WEB_LEGACY_TAG
image
:
$REGISTRY/
$PROJECT_GROUP
/devops/docker-orchestration/arsnova-mobile:$WEB_LEGACY_TAG
arsnova-proxy
:
image
:
$REGISTRY/
arsnova
/devops/docker-orchestration/nginx-proxy:stable
image
:
$REGISTRY/
$PROJECT_GROUP
/devops/docker-orchestration/nginx-proxy:stable
depends_on
:
-
arsnova-backend-core
-
arsnova-comment-service
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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