34 lines
800 B
Markdown
34 lines
800 B
Markdown
# Installation
|
|
|
|
## Manage local environment
|
|
|
|
Allows Portainer to manage the local Docker Environment
|
|
```yaml
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
```
|
|
|
|
## Data Persistence
|
|
|
|
Storing Data in a `portainer-data` volume on docker
|
|
```yaml
|
|
volumes:
|
|
- portainer-data:/data
|
|
```
|
|
# Best-Practices & Post-Installation
|
|
|
|
### (Option 1): Upload custom certificates
|
|
|
|
- [ ] Upload your custom certificates
|
|
- [ ] Force HTTPS only
|
|
- [ ] Expose Port `9443`
|
|

|
|
|
|
### (Option 2): Use a Reverse Proxy
|
|
|
|
- [] Use a Reverse Proxy to securely expose administrative services.
|
|
|
|
# Additional Referfences
|
|
|
|
[Official Portainer Documentation](https://docs.portainer.io/)
|