-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial Travis config, Fixed delete handler
- Loading branch information
1 parent
46143f0
commit a030944
Showing
8 changed files
with
75 additions
and
38 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
template: | ||
image: slidewiki/microservicetemplate | ||
questionservice: | ||
image: slidewiki/questionservice:latest-dev | ||
restart: on-failure:5 | ||
expose: | ||
- "80" | ||
|
@@ -9,16 +9,7 @@ template: | |
- APPLICATION_PORT=80 | ||
- DATABASE_PORT=27017 | ||
- DATABASE_URL=mongodb # use a url or the name, defined in the docker-compose file | ||
- VIRTUAL_HOST=microservicetemplate.experimental.slidewiki.org | ||
- LETSENCRYPT_HOST=microservicetemplate.experimental.slidewiki.org | ||
- [email protected] | ||
- SERVICE_URL_DECK=http://deckservice.experimental.slidewiki.org | ||
- SERVICE_URL_DISCUSSION=http://discussionservice.experimental.slidewiki.org | ||
- SERVICE_URL_ACTIVITIES=http://activitiesservice.experimental.slidewiki.org | ||
- SERVICE_URL_NOTIFICATION=http://notificationservice.experimental.slidewiki.org | ||
- SERVICE_URL_USER=http://userservice.experimental.slidewiki.org | ||
- SERVICE_URL_SEARCH=http://searchservice.experimental.slidewiki.org | ||
- SERVICE_URL_IMAGE=http://imageservice.experimental.slidewiki.org | ||
- SERVICE_URL_FILE=http://fileservice.experimental.slidewiki.org | ||
- SERVICE_URL_PDF=http://pdfservice.experimental.slidewiki.org | ||
- SERVICE_URL_IMPORT=http://importservice.experimental.slidewiki.org | ||
- VIRTUAL_HOST=questionservice.experimental.slidewiki.org | ||
- LETSENCRYPT_HOST=questionservice.experimental.slidewiki.org | ||
- [email protected] | ||
- LETSENCRYPT_TEST=true |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM mongo:latest | ||
FROM mongo:3.4 | ||
MAINTAINER Kurt Junghanns <[email protected]> | ||
|
||
# ---------------- # | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" | ||
docker build -t slidewiki/microservicetemplate ./ | ||
docker push slidewiki/microservicetemplate | ||
docker build -t slidewiki/questionservice:latest-dev . | ||
docker push slidewiki/questionservice:latest-dev |