Skip to content

Commit

Permalink
feat: enable redis and postgres in docker-compose.override.yml-dev (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Sep 27, 2023
1 parent 3fa108d commit 042eaa7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions docker-compose.override.yml-dev
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
# - `3002` -- mehari
# - `3003` -- viguno
# - `3004` -- nginx
# - `3020` -- postgres
# - `3030` -- redis

services:
# map annonars to port 3001
Expand Down Expand Up @@ -38,12 +40,12 @@ services:
deploy:
replicas: 0

# disable postgres
# map postgres port to 3020
postgres:
deploy:
replicas: 0
ports:
- "3020:5432"

# disable redis
# map redis port to 6379
redis:
deploy:
replicas: 0
ports:
- "3030:6379"

0 comments on commit 042eaa7

Please sign in to comment.