mirror of
https://github.com/dokku/dokku.git
synced 2025-12-21 14:29:25 +01:00
- Simplify first-install instructions - Move advanced docs around - Drop references to web installer Closes #4947
1.6 KiB
1.6 KiB
Microsoft Azure Installation Notes
-
If you don't already have one generate an SSH key pair.
-
Go to the Dokku on Azure deployment page and click Deploy to Azure.
-
You'll be prompted to enter a few parameters, including a unique storage account name and a unique name for the subdomain used for your public IP address. For the
sshKeyDataparameter, copy and paste the contents of the public key file you just created. After a few minutes the Dokku instance will be deployed. -
Once the installation is complete, you should configure an ssh key and set your global domain.
# usually your key is already available under the current user's `~/.ssh/authorized_keys` file cat ~/.ssh/authorized_keys | dokku ssh-keys:add admin # you can use any domain you already have access to # this domain should have an A record or CNAME pointing at your server's IP dokku domains:set-global dokku.me # you can also use the ip of your server dokku domains:set-global 10.0.0.2 # finally, you can use sslip.io to get subdomain support # as you would with a regular domain name # this would be done by appending `.sslip.io` to your ip address dokku domains:set-global 10.0.0.2.sslip.ioSee the user management and domains documentation for more information.