24 lines
709 B
YAML
24 lines
709 B
YAML
|
# vim:ft=ansible:
|
||
|
- name: docker deploy netbox
|
||
|
docker_container:
|
||
|
name: netbox
|
||
|
image: netboxcommunity/netbox:latest
|
||
|
env:
|
||
|
SUPERUSER_EMAIL: rehashedsalt@cock.li
|
||
|
SUPERUSER_PASSWORD: "{{ secret_netbox_user_pass }}"
|
||
|
SUPERUSER_API_TOKEN: "{{ secret_netbox_api_token }}"
|
||
|
SECRET_KEY: "{{ secret_netbox_secret_key }}"
|
||
|
ALLOWED_HOST: netbox.desu.ltd
|
||
|
DB_HOST: 192.168.164.156
|
||
|
DB_NAME: netbox-desultd
|
||
|
DB_USER: netbox-desultd
|
||
|
DB_PASSWORD: "{{ secret_netbox_db_pass }}"
|
||
|
REDIS_HOST: redis
|
||
|
REDIS_PORT: "6379"
|
||
|
networks:
|
||
|
- name: web
|
||
|
aliases: [ "netbox" ]
|
||
|
volumes:
|
||
|
- /data/netbox/config:/config
|
||
|
tags: [ docker, netbox ]
|