Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ ARG POSTGRES_TAG=17.5
FROM postgres:$POSTGRES_TAG

ENV POSTGRES_USER=world
ENV POSTGRES_PASSWORD=world123
ENV POSTGRES_DB=world-db

# Copier les scripts SQL dans :
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ This database contains 4 tables :
You can run a Docker container with this command (replace _xxxx_ by your local port) :

```shell
docker run -d -p xxxx:5432 ghusta/postgres-world-db:2.12
docker run -d -p xxxx:5432 -e POSTGRES_PASSWORD=world123 ghusta/postgres-world-db:2.12
```

# PostgreSQL configuration
Expand Down
Loading