Skip to content

Commit

Permalink
feat(docker): add Docker volume for Redis
Browse files Browse the repository at this point in the history
Although we don't need persistent data, this prevents Docker from creating various volumes for the service.
  • Loading branch information
nunogoncalves03 committed Feb 21, 2024
1 parent 126fa04 commit 10beeab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ services:
container_name: hs-tms_redis
image: redis:7.2
restart: always
volumes:
- redis_data:/data
environment:
- TZ=Europe/Lisbon
networks:
Expand Down Expand Up @@ -103,5 +105,6 @@ networks:
volumes:
postgres_data:
postgres-demo_data:
redis_data:
backend_storage:
caddy_data:

0 comments on commit 10beeab

Please sign in to comment.