This repository was archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Run OopsyPad in Docker Compose #19
Open
kdeyev
wants to merge
3
commits into
RedisDesktop:master
Choose a base branch
from
kdeyev:master
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 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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,34 @@ | ||
| FROM centos:7 | ||
|
|
||
|
|
||
| RUN rpm -Uvh http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm | ||
| RUN yum -y install python36 python36-pip dos2unix git | ||
| RUN yum -y install gcc gcc-c++ make libcurl-devel | ||
|
|
||
| # workdir and user | ||
| WORKDIR /OopsyPad | ||
| # USER 0 | ||
|
|
||
| COPY . . | ||
|
|
||
| # Get breakpad inside container | ||
| RUN rm -rf ./3rdparty/breakpad/* | ||
| RUN git submodule update --init --recursive | ||
|
|
||
| # Install dependencies | ||
| RUN dos2unix ./3rdparty/build.sh | ||
| RUN ./3rdparty/build.sh | ||
|
|
||
| # install OopsyPad | ||
| RUN python3 -m pip install . | ||
|
|
||
| EXPOSE 8000 | ||
|
|
||
| ENV LC_ALL=en_US.utf-8 | ||
| ENV LANG=en_US.utf-8 | ||
|
|
||
| ENV OOPSY_HOST=http://localhost:8000 | ||
|
|
||
| RUN dos2unix /OopsyPad/start.sh | ||
| ENTRYPOINT ["/bin/sh"] | ||
| CMD ["/OopsyPad/start.sh"] |
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
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,22 @@ | ||
| # Note: Requires docker-comopse 1.10+. | ||
| version: "2" | ||
| services: | ||
|
|
||
| mongo: | ||
| image: mongo | ||
| ports: | ||
| - "27017:27017" | ||
|
|
||
| oopsypad: | ||
| build: | ||
| context: . | ||
| dockerfile: ./Dockerfile | ||
| image: oopsypad | ||
| ports: | ||
| - "8000:8000" | ||
| environment: | ||
| - MONGODB_HOST=mongo | ||
| - CELERY_BROKER_URL=mongodb://mongo | ||
| - CELERY_RESULT_BACKEND=mongodb://mongo | ||
| depends_on: | ||
| - mongo |
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
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
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,6 @@ | ||
| #!/bin/sh | ||
| set -e | ||
|
|
||
| oopsy_celery_worker run | ||
| oopsy_run_server --host 0.0.0.0 --port 8000 | ||
| oopsy_celery_worker stop |
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.
Uh oh!
There was an error while loading. Please reload this page.