Sha256: 4b7653b8d4ec987f5555532eafe7546539aafe4cdbcb5c7efb24ed0415aa3c46
Contents?: true
Size: 751 Bytes
Versions: 9
Compression:
Stored size: 751 Bytes
Contents
version: '2' services: nginx: image: nginx:1.11-alpine command: nginx -g 'daemon off;' -c /etc/netbox-nginx/nginx.conf depends_on: - netbox volumes: - netbox-nginx-config:/etc/netbox-nginx/ - netbox-static-files:/opt/netbox/netbox/static ports: - 8080 netbox: image: ninech/netbox:latest depends_on: - postgres volumes: - netbox-static-files:/opt/netbox/netbox/static - netbox-nginx-config:/etc/netbox-nginx/ env_file: 'netbox.env' postgres: image: postgres:9.6-alpine environment: POSTGRES_USER: netbox POSTGRES_PASSWORD: netbox POSTGRES_DB: netbox volumes: netbox-static-files: driver: local netbox-nginx-config: driver: local
Version data entries
9 entries across 9 versions & 1 rubygems