Skip to content

Commit ec0545a

Browse files
committed
fix: remove Redis service from docker-compose.yml
This commit removes the Redis service configuration from the docker-compose.yml file. The removal includes the container name, image, restart policy, port mapping, and volume definition for Redis. The app service remains intact, ensuring that the application can still run independently without the Redis dependency.
1 parent 6fe076c commit ec0545a

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

docker-compose.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
version: '3.8'
22

33
services:
4-
redis:
5-
image: redis:alpine
6-
container_name: redis_container
7-
restart: always
8-
ports:
9-
- '6379:3679'
10-
volumes:
11-
- redis_data:/data
12-
134
app:
145
build: .
156
container_name: devcamper
16-
depends_on:
17-
- redis
187
ports:
198
- '3001:3001'
209

0 commit comments

Comments
 (0)