add env var, add docker files, idk how i forgot there in the readme
All checks were successful
Code quality checks / biome (push) Successful in 10s

This commit is contained in:
creations 2025-04-22 20:21:24 -04:00
parent d15b69fe38
commit 6bbf474b93
Signed by: creations
GPG key ID: 8F553AA4320FC711
3 changed files with 68 additions and 1 deletions

29
compose.yml Normal file
View file

@ -0,0 +1,29 @@
services:
profile-page:
container_name: profilePage
build:
context: .
restart: unless-stopped
ports:
- "${PORT:-6600}:${PORT:-6600}"
env_file:
- .env
networks:
- profilePage-network
dragonfly:
image: 'docker.dragonflydb.io/dragonflydb/dragonfly'
restart: unless-stopped
ulimits:
memlock: -1
volumes:
- dragonflydata:/data
networks:
- profilePage-network
volumes:
dragonflydata:
networks:
profilePage-network:
driver: bridge