record profile data in /var/log/tower, not /var/lib/awx

This commit is contained in:
Ryan Petrello
2019-02-15 14:30:27 -05:00
parent eed94b641e
commit 6f43875e80
5 changed files with 6 additions and 5 deletions

View File

@@ -66,7 +66,7 @@ ENTRYPOINT ["/tini", "--"]
CMD /start_development.sh
# Pre-create things that we need to write to
RUN for dir in /var/lib/awx/ /projects /.ansible /var/log/nginx /var/lib/nginx /.local; \
RUN for dir in /var/lib/awx/ /var/log/tower/ /projects /.ansible /var/log/nginx /var/lib/nginx /.local; \
do mkdir -p $dir; chmod -R g+rwx $dir; chgrp -R root $dir; done
RUN for file in /etc/passwd /etc/supervisord.conf \