⬆️ Updates Dependencies

* Postgres 9.6 -> 10.2
* Nginx 1.11 -> 1.13
This commit is contained in:
Christian Mäder 2018-02-16 10:34:33 +01:00
parent bab8618650
commit ba2b49339f
No known key found for this signature in database
GPG Key ID: 92FFD0A711F196BB
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ services:
- ./manage.py - ./manage.py
- test - test
postgres: postgres:
image: postgres:9.6-alpine image: postgres:10.2-alpine
env_file: postgres.env env_file: postgres.env
volumes: volumes:
netbox-static-files: netbox-static-files:

View File

@ -17,7 +17,7 @@ services:
- netbox-media-files:/opt/netbox/netbox/media - netbox-media-files:/opt/netbox/netbox/media
- netbox-report-files:/opt/netbox/netbox/reports - netbox-report-files:/opt/netbox/netbox/reports
nginx: nginx:
image: nginx:1.11-alpine image: nginx:1.13-alpine
command: nginx -g 'daemon off;' -c /etc/netbox-nginx/nginx.conf command: nginx -g 'daemon off;' -c /etc/netbox-nginx/nginx.conf
depends_on: depends_on:
- netbox - netbox
@ -27,7 +27,7 @@ services:
- netbox-static-files:/opt/netbox/netbox/static:ro - netbox-static-files:/opt/netbox/netbox/static:ro
- netbox-nginx-config:/etc/netbox-nginx/:ro - netbox-nginx-config:/etc/netbox-nginx/:ro
postgres: postgres:
image: postgres:9.6-alpine image: postgres:10.2-alpine
env_file: postgres.env env_file: postgres.env
volumes: volumes:
- netbox-postgres-data:/var/lib/postgresql/data - netbox-postgres-data:/var/lib/postgresql/data