Created
January 13, 2022 07:38
-
-
Save mbierman/f678519a3f5db2b478fc506726d84a46 to your computer and use it in GitHub Desktop.
UniFi YAML for Firewalla
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| unifi: | |
| container_name: unifi | |
| image: jacobalberty/unifi:latest | |
| volumes: | |
| - '/data/unifi/:/unifi' | |
| restart: unless-stopped | |
| networks: | |
| default: | |
| # static IP address for unifi controller | |
| ipv4_address: 172.16.1.2 | |
| networks: | |
| default: | |
| driver: bridge | |
| ipam: | |
| config: | |
| # your chosen docker network here | |
| - subnet: 172.16.1.0/24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment