Update docker-compose.yml and requirements.txt

This commit is contained in:
muzhi 2024-10-08 23:33:40 +08:00
parent ff9a763cec
commit 04d44afac0
2 changed files with 3 additions and 6 deletions

View File

@ -7,10 +7,9 @@ services:
environment: environment:
- server_address=http://server:8000 - server_address=http://server:8000
entrypoint: entrypoint:
- nohup
- python - python
- server.py - server.py
- &
node: node:
image: git.mamahaha.work/sangge/tpre:base image: git.mamahaha.work/sangge/tpre:base
volumes: volumes:
@ -18,10 +17,9 @@ services:
environment: environment:
- server_address=http://server:8000 - server_address=http://server:8000
entrypoint: entrypoint:
- nohup
- python - python
- node.py - node.py
- &
client: client:
image: git.mamahaha.work/sangge/tpre:base image: git.mamahaha.work/sangge/tpre:base
volumes: volumes:
@ -29,7 +27,5 @@ services:
environment: environment:
- server_address=http://server:8000 - server_address=http://server:8000
entrypoint: entrypoint:
- nohup
- python - python
- client.py - client.py
- &

View File

@ -2,3 +2,4 @@ gmssl-python>=2.2.2,<3.0.0
fastapi fastapi
uvicorn uvicorn
requests requests
web3