@@ -32,6 +32,7 @@ You can use NoDock for simple projects by using one of the [examples](#Examples)
32
32
- [ Change Node version] ( #Node-Version )
33
33
- [ Change Node project location] ( #Node-Project-Path )
34
34
- [ Change MySQL database/user/password] ( #MySQL-Database-User )
35
+ - [ Change PostgreSQL database/user/password] ( #PostgreSQL-Database-User )
35
36
- [ Change NGINX reverse proxy port] ( #NGINX-Reverse-Proxy-Port )
36
37
- [ Change the timezone] ( #Change-the-timezone )
37
38
- [ Use RabbitMQ plugins] ( #Use-RabbitMQ-plugins )
@@ -86,6 +87,7 @@ We provide examples of configurations you might use for a specific stack. Each e
86
87
* [Simple Web with Apache](https://github.com/Osedea/nodock/tree/master/_examples/apache) - Node + Apache
87
88
* [Simple Web with Nginx](https://github.com/Osedea/nodock/tree/master/_examples/nginx) - Node + NGINX
88
89
* [MySQL](https://github.com/Osedea/nodock/tree/master/_examples/mysql) - MySQL + Node + NGINX
90
+ * [PostgreSQL](https://github.com/Osedea/nodock/tree/master/_examples/postgresql) - PostgreSQL + Node + NGINX
89
91
* [Mongo](https://github.com/Osedea/nodock/tree/master/_examples/mongo) - MongoDB + Node + NGINX
90
92
* [RabbitMQ](https://github.com/Osedea/nodock/tree/master/_examples/rabbitmq) - RabbitMQ + Node + NGINX
91
93
* [Memcached](https://github.com/Osedea/nodock/tree/master/_examples/memcached) - Memcached + Node + NGINX
@@ -290,6 +292,21 @@ You can specify a `PROJECT_PATH` to change the directory in which `npm` will per
290
292
- MYSQL_USER=default_user
291
293
- MYSQL_PASSWORD=secret
292
294
` ` `
295
+ <a name="PostgreSQL-Database-User"></a>
296
+ # ### Change the PostgreSQL database/user/password
297
+ ` ` ` yaml
298
+ # docker-compose.override.yml
299
+ [...]
300
+ postgresql:
301
+ build:
302
+ args:
303
+ - POSTGRES_DB=default_db
304
+ - POSTGRES_USER=default_user
305
+ - POSTGRES_PASSWORD=secret
306
+ ` ` `
307
+
308
+
309
+
293
310
<a name="NGINX-Reverse-Proxy-Port"></a>
294
311
# ### Change the NGINX reverse proxy port
295
312
Use port `8080` instead of `8000` to bind your Node server
0 commit comments