-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tue, 20 Apr 2021 22:43:09 +0800 commit by B4xinSynchronize.
- Loading branch information
Showing
4 changed files
with
32 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM python:3.7 | ||
WORKDIR /usr/src/app | ||
COPY . . | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV TZ Asia/Shanghai | ||
|
||
RUN pip install -r requirements.txt | ||
|
||
EXPOSE 35050 | ||
EXPOSE 36050 | ||
|
||
CMD [ "python", "Src/Run/main.py" ] |
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,13 @@ | ||
version: '2' | ||
services: | ||
proxy_pool: | ||
ports: | ||
- "35050:35050" | ||
- "36050:36050" | ||
image: "1again/proxy_pool" | ||
proxy_pool_db: | ||
volumes: | ||
- /data/mongodb/:/data/ | ||
ports: | ||
- "27017:27017" | ||
image: "mongo" |
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 @@ | ||
theme: jekyll-theme-time-machine |
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