Initial commit

This commit is contained in:
2023-09-09 14:53:02 +02:00
commit e0ee091a7b
33 changed files with 788 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#RAPIDDASHBOARD_CONTAINER_NAME=RapidDashboard
#RAPIDDASHBOARD_TAG=latest
#RAPIDDASHBOARD_PORT=8080
+12
View File
@@ -0,0 +1,12 @@
services:
# Rapid Dashboard
rapiddashboard:
container_name: ${RAPIDDASHBOARD_CONTAINER_NAME:-RapidDashboard}
image: ozlerhakan/rapid:${RAPIDDASHBOARD_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8080/
ports:
- ${RAPIDDASHBOARD_PORT:-8080}:8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock