mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
1d3d792e12
* feat: . * feat: delete old data folder * fix: rename zipline-db service to zipline_postgres in compose.yaml * fix: add zipline compose to include list * fix: add redis service for stremthru * docs: add instructions in .env files * feat: remove docker folder and place apps and data folder in root dir * fix: add empty tokens.json file for plex_authentication * fix: add aiostremio template config * docs: update README with Authelia authentication and clarify setup instructions * fix: update stremthru_redis volume path and profile name in compose.yaml
30 lines
718 B
YAML
30 lines
718 B
YAML
services:
|
|
warp:
|
|
image: caomingjun/warp
|
|
container_name: warp
|
|
restart: unless-stopped
|
|
device_cgroup_rules:
|
|
- 'c 10:200 rwm'
|
|
expose:
|
|
- 1080
|
|
environment:
|
|
- WARP_SLEEP=5
|
|
cap_add:
|
|
- NET_ADMIN
|
|
sysctls:
|
|
- net.ipv6.conf.all.disable_ipv6=0
|
|
- net.ipv4.conf.all.src_valid_mark=1
|
|
volumes:
|
|
- ${DOCKER_DATA_DIR}/warp:/var/lib/cloudflare-warp
|
|
healthcheck:
|
|
test: curl -x "socks5h://127.0.0.1:1080" -fsSL "https://www.cloudflare.com/cdn-cgi/trace" | grep -qE "warp=(plus|on)" || exit 1
|
|
interval: 1m
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 5s
|
|
profiles:
|
|
- warp
|
|
- stremio
|
|
- all
|
|
- debrid_media_server
|