-
Notifications
You must be signed in to change notification settings - Fork 1
Added pattern-pedia-auth component #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
TYueksel
wants to merge
6
commits into
master
Choose a base branch
from
authentication
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
dd0224e
Added pattern-pedia-auth component
TYueksel 50620d1
change postgres role to patternatlas
TYueksel 89a4f30
changed pedia to atlas
TYueksel 5b6cd77
Rename docker-compose.yml to docker-compose.auth.yml
TYueksel 0cde052
MERGE from master
TYueksel f0eebec
Change db branch
TYueksel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| version: '3.6' | ||
| services: | ||
| db: | ||
| image: patternatlas/pattern-atlas-db:latest | ||
| environment: | ||
| POSTGRES_USER: patternatlas | ||
| POSTGRES_PASSWORD: patternatlas | ||
| POSTGRES_DB: patternatlas | ||
| PATTERN_ATLAS_CONTENT_REPOSITORY_BRANCH: master | ||
| ports: | ||
| - "5060:5060" | ||
| networks: | ||
| - default | ||
| pattern-atlas-api: | ||
| image: patternatlas/pattern-atlas-api:latest | ||
| environment: | ||
| JDBC_DATABASE_URL: db | ||
| JDBC_DATABASE_NAME: patternatlas | ||
| JDBC_DATABASE_USERNAME: patternatlas | ||
| JDBC_DATABASE_PASSWORD: patternatlas | ||
| LATEX_RENDERER_HOST_NAME: latex-renderer | ||
| LATEX_RENDERER_PORT: 5030 | ||
| JDBC_DATABASE_NAME: patternatlas | ||
|
|
||
| # activate correct application properties | ||
| SPRING_PROFILES_ACTIVE: docker | ||
| ports: | ||
| - "1977:1977" | ||
| networks: | ||
| - default | ||
| depends_on: | ||
| - db | ||
| - latex-renderer | ||
| restart: on-failure | ||
| pattern-atlas-ui: | ||
| image: patternatlas/pattern-atlas-ui:latest | ||
| depends_on: | ||
| - config-server | ||
| environment: | ||
| # because the requests are performed from the browser and not | ||
| # from the container itself we have to specify localhost here | ||
| # and **not** the container name | ||
| PATTERN_ATLAS_API_HOST_NAME: localhost | ||
| PATTERN_ATLAS_API_PORT: 1977 | ||
| LATEX_RENDERER_HOST_NAME: localhost | ||
| LATEX_RENDERER_PORT: 5030 | ||
| ports: | ||
| - "1978:80" | ||
| config-server: | ||
| image: quay.io/coreos/etcd:latest | ||
| environment: | ||
| ETCD_NAME: config-node1 | ||
| ETCD_CORS: "*" | ||
| ETCD_ADVERTISE_CLIENT_URLS: "http://config-server:2379" | ||
| ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379" | ||
| ETCDCTL_API: 3 | ||
| ports: | ||
| - "2379:2379" | ||
| networks: | ||
| - default | ||
| pattern-atlas-auth: | ||
| build: https://github.com/PatternAtlas/pattern-atlas-auth.git | ||
| environment: | ||
| JDBC_DATABASE_URL: db | ||
| JDBC_DATABASE_NAME: patternatlas | ||
| JDBC_DATABASE_USERNAME: patternatlas | ||
| JDBC_DATABASE_PASSWORD: patternatlas | ||
| ports: | ||
| - "8081:8081" | ||
| networks: | ||
| - default | ||
| depends_on: | ||
| - db | ||
| restart: on-failure | ||
| # used by the pattern atlas to render latex | ||
| latex-renderer: | ||
| image: planqk/latex-renderer:latest | ||
| ports: | ||
| - "5030:5030" | ||
| networks: | ||
| default: | ||
| driver: bridge | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JDBC_DATABASE_NAME is a duplicate key