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
All checks were successful
Code quality checks / biome (push) Successful in 10s
This commit is contained in:
parent
d15b69fe38
commit
6bbf474b93
3 changed files with 68 additions and 1 deletions
29
compose.yml
Normal file
29
compose.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue