Spaces:
Running
Running
File size: 444 Bytes
8a8fe1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
version: "3.9"
services:
gpt4free-ts:
build:
context: .
dockerfile: Dockerfile
container_name: gpt4free-ts
image: gpt4free-ts:latest
ports:
- "13000:3000"
restart: always
volumes:
- ./run:/usr/src/app/run
cap_add:
- "SYS_ADMIN"
environment:
# - TZ=Asia/Shanghai
- http_proxy=${http_proxy}
- https_proxy=${http_proxy}
- rapid_api_key=${rapid_api_key}
|