Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects

Draft: Netbox password rotation service

Open Arkadiusz SZCZECINSKI requested to merge v3_password-rotation into develop
Files
7
+ 18
0
FROM netboxcommunity/netbox:v3.6.9-2.7.0
RUN mkdir /opt/netbox/plugins
# COPY ../requirements.txt /opt/netbox/plugins
# COPY netbox_configuration/ansible.sh /opt/netbox/ansible.sh
# RUN chmod +x /opt/netbox/ansible.sh
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
ADD netbox-operations /opt/netbox/netbox-operations
# RUN rm /etc/apt/sources.list.d/unit.list
# COPY docker/sources.list /etc/apt/sources.list
# RUN apt-get update && apt-get install -y cron jq vim
RUN pip install ansible
RUN pip install ansible-modules-hashivault
CMD ["/opt/netbox/ansible.sh"]
Loading