⬆️ 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
- test
postgres:
image: postgres:9.6-alpine
image: postgres:10.2-alpine
env_file: postgres.env
volumes:
netbox-static-files:

View File

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