Sha256: 0c5c823d03677937d54f70be6b92b434995fdba3c3772c1f82b9ef4f7f232b3c
Contents?: true
Size: 749 Bytes
Versions: 7
Compression:
Stored size: 749 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: - 80 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
7 entries across 7 versions & 1 rubygems