Skip to content

Commit

Permalink
portainer notes
Browse files Browse the repository at this point in the history
  • Loading branch information
CheeseLad committed Apr 6, 2024
1 parent 64addf0 commit 335ead9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions docs/homelab/services/portainer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Portainer


## Docker Compose File

```yaml
version: "3"
services:
portainer:
container_name: portainer
hostname: portainer
image: portainer/portainer-ce:latest
ports:
- 9443:9443
volumes:
- ./config/data:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped

volumes:
data:
```
## Notes
- Access Portainer at `https://192.168.1.3:9443` (Local Network Only)
- Web UI only works with HTTPS, so you need to use `https://` instead of `http://`, certificate is not required.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ nav:
- Services: homelab/services.md
- Service Info:
- Pterodactyl: homelab/services/pterodactyl.md
- Portainer: homelab/services/portainer.md
- Devices: homelab/devices.md
- Redbrick:
- Redbrick Information: redbrick/redbrick.md
Expand Down

0 comments on commit 335ead9

Please sign in to comment.