Guest User

Untitled

a guest
Aug 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. ##
  2. # Pterodactyl Panel Docker Setup by ccarney
  3. ##
  4. version: '2'
  5. services:
  6.  
  7. ##
  8. # Pterodactyl Panel
  9. # This is the main service that will be seen publically.
  10. ##
  11. panel:
  12. build:
  13. context: ./manifest/panel
  14. dockerfile: Dockerfile
  15. env_file: .env
  16. image: ccarney16/pterodactyl-panel:v0.7.9
  17. restart: always
  18. volumes:
  19. - ./data:/data
  20. ports:
  21. - 19331:80
  22. - 19332:443
  23.  
  24. ##
  25. # Pterodactyl Daemon
  26. # If you don't plan on running the daemon on the same machine,
  27. # you may comment/delete the section below.
  28. ##
  29. daemon:
  30. build:
  31. context: ./manifest/daemon
  32. dockerfile: Dockerfile
  33. depends_on:
  34. - panel
  35. image: ccarney16/pterodactyl-daemon:v0.5.6
  36. ports:
  37. - 19333:8080
  38. privileged: true
  39. restart: always
  40. volumes:
  41. - /srv/daemon/config:/srv/daemon/config
  42. - /srv/daemon/packs:/srv/daemon/packs
  43. - /srv/daemon-data:/srv/daemon-data
  44.  
  45. - /tmp/pterodactyl:/tmp/pterodactyl
  46.  
  47. # Docker socket, this is required to function properly.
  48. - /var/run/docker.sock:/var/run/docker.sock
Add Comment
Please, Sign In to add comment