refactor: add dev directory to organize dev files #398 (#408)

* refactor: add dev directory to organize dev files #398

* chore: address pull request feedback
This commit is contained in:
Meier Lukas
2024-05-01 19:58:58 +02:00
committed by GitHub
parent 14d941e57a
commit ad1796dc02
5 changed files with 2 additions and 2 deletions

1
development/build.cmd Normal file
View File

@@ -0,0 +1 @@
docker build -t homarr .

View File

@@ -0,0 +1,14 @@
############################
#
# This compose file is only for development.
# Do not use this in production.
#
############################
name: development-docker-compose
services:
redis:
container_name: redis
image: redis
ports:
- "6379:6379"

View File

@@ -0,0 +1 @@
docker run -p 3000:3000 -p 3001:3001 homarr:latest