Advertisement
hjaltiatla

Docker compose unifi

Nov 21st, 2019
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. version: "2"
  2. services:
  3. unifi-controller:
  4. image: linuxserver/unifi-controller
  5. container_name: unifi-controller
  6. environment:
  7. - PUID=1000
  8. - PGID=1000
  9. - MEM_LIMIT=1024M
  10. volumes:
  11. - /home/hjalti/compose/unifi-controller/data:/config
  12. ports:
  13. - 3478:3478/udp
  14. - 10001:10001/udp
  15. - 8080:8080
  16. - 8081:8081
  17. - 8443:8443
  18. - 8843:8843
  19. - 8880:8880
  20. - 6789:6789
  21. restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement