🐳 Extracted postgres env into new file
This commit is contained in:
parent
f9d60692f4
commit
de9b6a853d
|
@ -14,10 +14,8 @@ services:
|
||||||
- test
|
- test
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:9.6-alpine
|
image: postgres:9.6-alpine
|
||||||
environment:
|
env_file: postgres.env
|
||||||
POSTGRES_USER: netbox
|
|
||||||
POSTGRES_PASSWORD: J5brHrAXFLQSif0K
|
|
||||||
POSTGRES_DB: netbox
|
|
||||||
volumes:
|
volumes:
|
||||||
netbox-static-files:
|
netbox-static-files:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
|
@ -24,10 +24,8 @@ services:
|
||||||
- netbox-nginx-config:/etc/netbox-nginx/
|
- netbox-nginx-config:/etc/netbox-nginx/
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:9.6-alpine
|
image: postgres:9.6-alpine
|
||||||
environment:
|
env_file: postgres.env
|
||||||
POSTGRES_USER: netbox
|
|
||||||
POSTGRES_PASSWORD: J5brHrAXFLQSif0K
|
|
||||||
POSTGRES_DB: netbox
|
|
||||||
volumes:
|
volumes:
|
||||||
netbox-static-files:
|
netbox-static-files:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
POSTGRES_USER=netbox
|
||||||
|
POSTGRES_PASSWORD=J5brHrAXFLQSif0K
|
||||||
|
POSTGRES_DB=netbox
|
Loading…
Reference in New Issue