parent
945a23ff32
commit
9bd00cca0c
|
@ -1,11 +1,9 @@
|
||||||
FROM debian:8
|
FROM debian8_python3
|
||||||
|
|
||||||
MAINTAINER Joachim Lusiardi
|
MAINTAINER Joachim Lusiardi
|
||||||
|
|
||||||
RUN apt-get update;
|
RUN apt-get update; \
|
||||||
RUN apt-get install -y python3-pip
|
apt-get install -y nginx;
|
||||||
RUN apt-get install -y nginx
|
|
||||||
|
|
||||||
|
|
||||||
ADD nginx.conf /etc/nginx.conf
|
ADD nginx.conf /etc/nginx.conf
|
||||||
ADD start.sh /start.sh
|
ADD start.sh /start.sh
|
||||||
|
@ -15,7 +13,6 @@ ADD nginx_proxy.py /nginx_proxy.py
|
||||||
RUN chmod +x /nginx_proxy.py
|
RUN chmod +x /nginx_proxy.py
|
||||||
RUN pip3 install docker-py
|
RUN pip3 install docker-py
|
||||||
|
|
||||||
VOLUME ["/keys"]
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
ENTRYPOINT /start.sh
|
ENTRYPOINT /start.sh
|
||||||
|
|
||||||
|
|
|
@ -141,7 +141,6 @@ if __name__ == '__main__':
|
||||||
except APIError:
|
except APIError:
|
||||||
ip = ''
|
ip = ''
|
||||||
|
|
||||||
# logging.info(event['status'] + " " + ip)
|
|
||||||
if ip == '':
|
if ip == '':
|
||||||
logging.info('removing %sproxy_%s', target_path, container_id)
|
logging.info('removing %sproxy_%s', target_path, container_id)
|
||||||
if os.path.exists(target_path + 'proxy_' + container_id):
|
if os.path.exists(target_path + 'proxy_' + container_id):
|
||||||
|
@ -151,7 +150,3 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
reload_nginx_configuration()
|
reload_nginx_configuration()
|
||||||
|
|
||||||
# event['timestamp'] = datetime.datetime.fromtimestamp(event['time']).strftime('%Y-%m-%d %H:%M:%S');
|
|
||||||
# print_json(event)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue