Standartized docker-compose files. Added some documentation (AI generated)
This commit is contained in:
24
heimdall/README.md
Normal file
24
heimdall/README.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# Heimdall
|
||||
|
||||
[Heimdall](https://heimdall.site/) is a dashboard for all your web applications.
|
||||
|
||||
This directory contains a Docker Compose setup for Heimdall.
|
||||
|
||||
## Docker Compose Setup
|
||||
|
||||
### Services
|
||||
|
||||
- **heimdall**: The Heimdall application.
|
||||
|
||||
### Volumes
|
||||
|
||||
- `/home/mbuz/docker/heimdall/config:/config`: Stores the Heimdall configuration files. You should change this to a path on your own system.
|
||||
|
||||
### Ports
|
||||
|
||||
- `80:80`: The Heimdall web interface is accessible on port 80.
|
||||
- `443:443`: The Heimdall web interface is accessible on port 443.
|
||||
|
||||
## Usage
|
||||
|
||||
1. Run `docker-compose up -d` to start the container.
|
||||
@@ -1,16 +1,16 @@
|
||||
version: "2.1"
|
||||
|
||||
services:
|
||||
heimdall:
|
||||
image: lscr.io/linuxserver/heimdall:latest
|
||||
container_name: heimdall
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Warsaw
|
||||
volumes:
|
||||
- /home/mbuz/docker/heimdall/config:/config
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
version: "2.1"
|
||||
|
||||
services:
|
||||
heimdall:
|
||||
image: lscr.io/linuxserver/heimdall:latest
|
||||
container_name: heimdall
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Warsaw
|
||||
volumes:
|
||||
- /home/mbuz/docker/heimdall/config:/config
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user