Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

docker-compose.yml 520 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. version: "3.3"
  2. services:
  3. pytorch:
  4. image: runpod/pytorch:3.10-1.13.1-116
  5. command: |
  6. bash -c "curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/utensil/llm-playground/main/scripts/prepare_runpod_pytorch.sh -sSf | bash"
  7. env_file: .env
  8. ports:
  9. - "7860:7860"
  10. - "8888:8888"
  11. stdin_open: true
  12. tty: true
  13. deploy:
  14. resources:
  15. reservations:
  16. devices:
  17. - driver: nvidia
  18. device_ids: ['0']
  19. capabilities: [gpu]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...