Guest User

Untitled

a guest
Feb 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. # Pull the latest version because we always want it.
  4. echo "Attempting to pull latest container version..."
  5. docker pull jacobalberty/unifi:latest
  6.  
  7. # Run the container.
  8. echo "Starting container..."
  9. docker run \
  10. --rm \
  11. --init \
  12. -p 8080:8080 \
  13. -p 8443:8443 \
  14. -p 3478:3478/udp \
  15. -p 10001:10001/udp \
  16. -e TZ='America/Chicago' \
  17. -v ~/unifi:/unifi \
  18. --name unifi \
  19. jacobalberty/unifi:latest
Add Comment
Please, Sign In to add comment