Created
June 28, 2024 22:24
-
-
Save sullemanhossam/3a2af819fabc59c05b97a9b6c1a959a0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build: | |
context: . | |
dockerfile: Dockerfile | |
ports: | |
- "9292:9292" | |
depends_on: | |
- redis | |
redis: | |
image: redis:6.2-alpine | |
restart: always | |
ports: | |
- "6379:6379" | |
command: redis-server --save 60 1 --loglevel warning --requirepass 227777d4dd1fc61c6f884f --bind 0.0.0.0 | |
volumes: | |
- ./data:/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment