Newer
Older
netbox-docker / docker-compose.yml
@Jeremy Stretch Jeremy Stretch on 19 Apr 2017 1 KB Copied Docker components from main repo
version: '2'

services:
    postgres:
        image: postgres:9.6
        container_name: postgres
        environment:
            POSTGRES_USER: netbox
            POSTGRES_PASSWORD: J5brHrAXFLQSif0K
            POSTGRES_DB: netbox
    netbox:
        build: .
        image: digitalocean/netbox
        links:
        - postgres
        container_name: netbox
        depends_on:
        - postgres
        environment:
            SUPERUSER_NAME: admin
            SUPERUSER_EMAIL: [email protected]
            SUPERUSER_PASSWORD: admin
            ALLOWED_HOSTS: localhost
            DB_NAME: netbox
            DB_USER: netbox
            DB_PASSWORD: J5brHrAXFLQSif0K
            DB_HOST: postgres
            SECRET_KEY: r8OwDznj!!dci#P9ghmRfdu1Ysxm0AiPeDCQhKE+N_rClfWNj
            EMAIL_SERVER: localhost
            EMAIL_PORT: 25
            EMAIL_USERNAME: foo
            EMAIL_PASSWORD: bar
            EMAIL_TIMEOUT: 10
            EMAIL_FROM: [email protected]
            NETBOX_USERNAME: guest
            NETBOX_PASSWORD: guest
        volumes:
        - netbox-static-files:/opt/netbox/netbox/static
    nginx:
        image: nginx:1.11.1-alpine
        links:
        - netbox
        container_name: nginx
        command: nginx -g 'daemon off;' -c /etc/netbox-nginx/nginx.conf
        depends_on:
        - netbox
        ports:
        - 80:80
        volumes_from:
        - netbox
volumes:
    netbox-static-files:
        driver: local