update doc

This commit is contained in:
BryantHe 2023-08-10 13:08:06 +08:00
parent 94a4da983f
commit e31d355dc8
2 changed files with 6 additions and 3 deletions

View File

@ -10,7 +10,7 @@ api = APIBlueprint('api', __name__)
@api.get('/hello')
def hello():
result_one = f'我是您的专属接口提供服务器: {os.environ["HOSTNAME"]}'
result_one = f'我是您的专属接口提供服务器'
result_two = f'我的机器参数如下'
result_three = f'操作系统:{platform.system()}'
text = """
@ -59,6 +59,8 @@ def hello():
<br />
<span style="font-size:30px">
<a href=""> """ + result_one + """</a>
<br />
<a href=""> """ + f'{os.environ["HOSTNAME"]} ' + f'进程 {socket.gethostname()}' + """</a>
</span>
<br />
<span style="font-size:25px">

View File

@ -5,8 +5,6 @@ services:
build:
context: .
dockerfile: ./Dockerfile
container_name: pzx-web-api
hostname: pzx-web-api
ports:
- "5010:5000"
volumes:
@ -21,3 +19,6 @@ services:
tty: true
restart: always
command: ["sh", "docker-deploy.sh"]
deploy:
mode: replicated
replicas: 3