vost commited on
Commit
d91dc08
verified
1 Parent(s): 0ec5271

Delete docker-compose.yaml

Browse files
Files changed (1) hide show
  1. docker-compose.yaml +0 -22
docker-compose.yaml DELETED
@@ -1,22 +0,0 @@
1
- services:
2
- hf-provider:
3
- image: ghcr.io/huggingface/hf-mount-fuse:latest
4
- container_name: hf-provider
5
- # Sobrescrevemos o entrypoint para poder usar l贸gica de shell
6
- entrypoint: ["/bin/sh", "-c"]
7
- privileged: true
8
- cap_add:
9
- - SYS_ADMIN
10
- devices:
11
- - /dev/fuse:/dev/fuse
12
- environment:
13
- - HF_TOKEN=${HF_TOKEN}
14
- volumes:
15
- - ./mnt/hf:/mnt/hf:shared
16
- - ./cache/hf-mount:/tmp/hf-mount-cache:rw
17
- command: >
18
- "mkdir -p /mnt/hf/public /mnt/hf/private &&
19
- hf-mount-fuse repo vost/pub-scripts /mnt/hf/public --hf-token $${HF_TOKEN} --cache-size 10000000000 &
20
- hf-mount-fuse bucket vost/priv-configs /mnt/hf/private --hf-token $${HF_TOKEN} --cache-size 2000000000 &&
21
- wait"
22
- restart: unless-stopped