Skip to content

Commit

Permalink
Final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardo-rubio committed Apr 24, 2024
1 parent 08c5fb7 commit c137b07
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,20 @@ To do it access:</br>
```
redis-cli -h 127.0.0.1 -p 6379 PING
```

* Open Ports
```
docker container ls --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}" -a
```
* Postgres connection
```
{
"label": "127.0.0.1",
"host": "127.0.0.1",
"user": "postgres",
"port": 6543,
"ssl": false,
"database": "",
"password": "password"
}
```
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ services:
# - POSTGRES_USER=someuser
- POSTGRES_PASSWORD=password
image: 'postgres:9.5'
ports:
- "6543:5432"
volumes:
- 'postgres:/var/lib/postgresql/data'

Expand Down

0 comments on commit c137b07

Please sign in to comment.