diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-05-01 19:25:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-01 19:25:14 +0200 |
commit | bcd85927101cea009259fd975300872b2e0d9111 (patch) | |
tree | 8ea4c862ec8f162cf689e36ce0945ba1ddc1dfff /docker-compose.yaml | |
parent | refactored code (diff) | |
parent | Merge pull request #337 from CCXXXI/docs/readme (diff) | |
download | gpt4free-bcd85927101cea009259fd975300872b2e0d9111.tar gpt4free-bcd85927101cea009259fd975300872b2e0d9111.tar.gz gpt4free-bcd85927101cea009259fd975300872b2e0d9111.tar.bz2 gpt4free-bcd85927101cea009259fd975300872b2e0d9111.tar.lz gpt4free-bcd85927101cea009259fd975300872b2e0d9111.tar.xz gpt4free-bcd85927101cea009259fd975300872b2e0d9111.tar.zst gpt4free-bcd85927101cea009259fd975300872b2e0d9111.zip |
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r-- | docker-compose.yaml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml index 3afd6cdf..8098f359 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -2,8 +2,14 @@ version: "3.9" services: gpt4free: - build: - context: . + build: + context: ./ dockerfile: Dockerfile + container_name: dc_gpt4free + # environment: + # - http_proxy=http://127.0.0.1:1080 # modify this for your proxy + # - https_proxy=http://127.0.0.1:1080 # modify this for your proxy + image: img_gpt4free ports: - - "8501:8501" + - 8501:8501 + restart: always
\ No newline at end of file |