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

Commit

Permalink
Docker compose ports localhost set
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentluce committed Aug 27, 2024
1 parent 5f09e11 commit baa159e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- DB_PASSWORD=kurtosis
- DEV_MODE=true
ports:
- '127.0.0.1:8080:8080'
- 'localhost:8080:8080'
depends_on:
- postgres
postgres:
Expand All @@ -21,7 +21,7 @@ services:
- POSTGRES_PASSWORD=kurtosis
- POSTGRES_DB=kardinal
ports:
- '127.0.0.1:5432:5432'
- 'localhost:5432:5432'
volumes:
- postgres:/var/lib/postgresql/data
volumes:
Expand Down

0 comments on commit baa159e

Please sign in to comment.