-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into chore/update-gitlab-docs
- Loading branch information
Showing
643 changed files
with
25,919 additions
and
6,536 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
13 changes: 13 additions & 0 deletions
13
.idea/runConfigurations/Artemis__Server__LocalVC___LocalCI__IRIS_.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Empty file.
This file contains 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
This file contains 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,39 @@ | ||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# Artemis-Dev-Postgres Setup | ||
# ---------------------------------------------------------------------------------------------------------------------- | ||
|
||
services: | ||
artemis-app: | ||
extends: | ||
file: ./artemis.yml | ||
service: artemis-app | ||
# just add this linux workaround for docker compose in a development version of artemis as developers | ||
# might want to access external services on the docker host | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
ports: | ||
- "8080:8080" | ||
- "5005:5005" # Java Remote Debugging port declared in the java cmd options | ||
# expose the port to make it reachable docker internally even if the external port mapping changes | ||
expose: | ||
- "5005" | ||
env_file: | ||
- ./artemis/config/dev.env | ||
- ./artemis/config/postgres.env | ||
depends_on: | ||
postgres: | ||
condition: service_healthy | ||
postgres: | ||
extends: | ||
file: ./postgres.yml | ||
service: postgres | ||
|
||
networks: | ||
artemis: | ||
driver: "bridge" | ||
name: artemis | ||
volumes: | ||
artemis-postgres-data: | ||
name: artemis-postgres-data | ||
artemis-data: | ||
name: artemis-data |
This file contains 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
Oops, something went wrong.