This file aims to explain how to deploy Portainer inside a compose file with the admin password already set.
For this example, we'll use the password superpassword.
Use the following command to generate a hash for the password:
This file aims to explain how to deploy Portainer inside a compose file with the admin password already set.
For this example, we'll use the password superpassword.
Use the following command to generate a hash for the password:
| // | |
| // NSImageExtensions.swift | |
| // | |
| import Cocoa | |
| extension NSImage { | |
| /// The height of the image. | |
| var height: CGFloat { |
| ######################### | |
| # .gitignore file for Xcode4 and Xcode5 Source projects | |
| # | |
| # Apple bugs, waiting for Apple to fix/respond: | |
| # | |
| # 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? | |
| # | |
| # Version 2.6 | |
| # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| # |
| // Sets the view's background to the given image | |
| // prior to call, you may need to execute: `view.wantsLayer = YES` | |
| void SetBackgroundImage(NSView *view, NSString *imageName) | |
| { | |
| view.layer.contents = (id)[NSImage imageNamed:imageName]; | |
| } |