#tradewind:update
This commit is contained in:
@ -16,7 +16,7 @@ services:
|
|||||||
- ./log/nginx:/var/log/nginx
|
- ./log/nginx:/var/log/nginx
|
||||||
container_name: nginx
|
container_name: nginx
|
||||||
restart: always
|
restart: always
|
||||||
php7.4:
|
php74:
|
||||||
build:
|
build:
|
||||||
context: ./php7.4/
|
context: ./php7.4/
|
||||||
dockerfile: dockerfile
|
dockerfile: dockerfile
|
||||||
@ -37,7 +37,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
MYSQL_ROOT_PASSWORD: root
|
MYSQL_ROOT_PASSWORD: root
|
||||||
command: --default-authentication-plugin=mysql_native_password
|
command: --default-authentication-plugin=mysql_native_password
|
||||||
# platform: linux/x86_64 # apple silicon
|
# platform: linux/amd64 # apple silicon
|
||||||
networks:
|
networks:
|
||||||
- server
|
- server
|
||||||
ports:
|
ports:
|
||||||
@ -55,5 +55,16 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 6379:6379
|
- 6379:6379
|
||||||
container_name: redis
|
container_name: redis
|
||||||
|
python:
|
||||||
|
build:
|
||||||
|
context: ./
|
||||||
|
dockerfile: dockerfile
|
||||||
|
volumes:
|
||||||
|
- ${LOCAL_CODE_ROOT}:/code
|
||||||
|
networks:
|
||||||
|
- server
|
||||||
|
container_name: python
|
||||||
|
ports:
|
||||||
|
- 8000:8000
|
||||||
networks:
|
networks:
|
||||||
server:
|
server:
|
@ -3,6 +3,7 @@ FROM php:7.4-fpm
|
|||||||
RUN sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list
|
RUN sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
|
git \
|
||||||
zip \
|
zip \
|
||||||
unzip \
|
unzip \
|
||||||
libpq-dev \
|
libpq-dev \
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
|
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
|
||||||
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
|
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
|
||||||
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
|
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
|
||||||
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
|
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
|
||||||
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
|
|
||||||
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
|
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
|
||||||
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
|
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
|
||||||
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
|
|
||||||
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
|
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
|
||||||
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
|
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
|
24
python/dockerfile
Normal file
24
python/dockerfile
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
FROM python:3.9-alpine3.13 as build
|
||||||
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories \
|
||||||
|
&& apk update \
|
||||||
|
&& apk add git gcc g++ musl-dev libffi-dev libressl-dev make
|
||||||
|
WORKDIR /install
|
||||||
|
COPY requirements.txt /install/requirements.txt
|
||||||
|
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r /install/requirements.txt \
|
||||||
|
&& mkdir -p /install/lib/python3.9/site-packages \
|
||||||
|
&& cp -rp /usr/local/lib/python3.9/site-packages /install/lib/python3.9 \
|
||||||
|
&& cp -p /usr/local/bin/uvicorn /install/uvicorn
|
||||||
|
|
||||||
|
|
||||||
|
FROM python:3.9-alpine3.13
|
||||||
|
|
||||||
|
# This hack is widely applied to avoid python printing issues in docker containers.
|
||||||
|
# See: https://github.com/Docker-Hub-frolvlad/docker-alpine-python3/pull/13
|
||||||
|
ENV PYTHONUNBUFFERED=1
|
||||||
|
|
||||||
|
COPY --from=build /install/lib /usr/local/lib
|
||||||
|
COPY --from=build /install/uvicorn /usr/local/bin/uvicorn
|
||||||
|
|
||||||
|
WORKDIR /code
|
||||||
|
|
||||||
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|
6
python/requirements.txt
Normal file
6
python/requirements.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
fastapi
|
||||||
|
python-multipart
|
||||||
|
python_jose[cryptography]
|
||||||
|
SQLAlchemy[sqlite]
|
||||||
|
uvicorn[standard]
|
||||||
|
passlib[bcrypt]
|
Reference in New Issue
Block a user