Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
ci: do not create Docker for Redis
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Mar 17, 2024
1 parent 8685e1c commit 782e2d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
File renamed without changes.
8 changes: 6 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ services:
- music-room

redis:
build: ./redis # See ./redis/Dockerfile for more details
# See more: https://hub.docker.com/_/redis
image: "redis:7.2.4-alpine"
restart: always
# Use custom config
command: redis-server /usr/local/etc/redis/redis.conf
volumes:
- "redis:/data"
- "redis:/data:rw"
- "./deploy/redis.conf:/usr/local/etc/redis/redis.conf:ro"
ports:
- "6379:6379"

Expand Down
8 changes: 0 additions & 8 deletions redis/Dockerfile

This file was deleted.

0 comments on commit 782e2d4

Please sign in to comment.