Spaces:
Paused
Paused
| services: | |
| web: | |
| build: . | |
| container_name: chatgpt-register | |
| restart: unless-stopped | |
| ports: | |
| - "127.0.0.1:2080:8080" | |
| volumes: | |
| - ./data/config.json:/app/config.json | |
| - ./data/codex_tokens:/app/codex_tokens | |
| - ./data/logs:/app/logs | |
| - ./data/registered_accounts.txt:/app/registered_accounts.txt | |
| - ./data/ak.txt:/app/ak.txt | |
| - ./data/rk.txt:/app/rk.txt | |
| environment: | |
| - PYTHONUNBUFFERED=1 | |
| network_mode: bridge | |
| # networks: | |
| # - warp-proxy-net | |
| # networks: | |
| # warp-proxy-net: | |
| # name: warp-proxy-net # 显式指定网络名称,方便外部容器直接引用 | |
| # # driver: bridge | |
| # external: true |