Created
February 24, 2026 19:57
-
-
Save igoticecream/23e794992394068098983fd09346f541 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| # https://github.com/Pipepito/acestream-scraper | |
| # https://github.com/Javinator9889/acexy | |
| acestream-scraper: | |
| image: pipepito/acestream-scraper:latest | |
| container_name: acestream-scraper | |
| environment: | |
| - PUID=${UID} | |
| - PGID=${GID} | |
| - UMASK=${UMASK} | |
| - TZ=${TZ} | |
| - ENABLE_TOR=false | |
| - ENABLE_ACEXY=true | |
| - ENABLE_ACESTREAM_ENGINE=true | |
| - ACESTREAM_HTTP_PORT=6878 | |
| - FLASK_PORT=8000 | |
| - ACEXY_LISTEN_ADDR=:8080 | |
| - ACEXY_HOST=localhost | |
| - ACEXY_PORT=6878 | |
| - ALLOW_REMOTE_ACCESS=no | |
| - ACEXY_NO_RESPONSE_TIMEOUT=15s | |
| - ACEXY_BUFFER_SIZE=5MiB | |
| ports: | |
| - "8000:8000" # Flask application | |
| - "8030:8080" # Acexy proxy | |
| - "8621:8621" # Acestream P2P Port | |
| - "43110:43110" # ZeroNet UI | |
| - "43111:43111" # ZeroNet peer | |
| - "26552:26552" # ZeroNet peer | |
| volumes: | |
| - /etc/localtime:/etc/localtime:ro | |
| - ${CONFIG_DIR}/acestream-scraper/data/zeronet:/app/ZeroNet/data | |
| - ${CONFIG_DIR}/acestream-scraper/data/config:/app/config | |
| security_opt: | |
| - no-new-privileges:true | |
| restart: unless-stopped | |
| healthcheck: | |
| test: ["CMD", "/app/healthcheck.sh"] | |
| interval: 30s | |
| timeout: 10s | |
| retries: 3 | |
| start_period: 60s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment