You've already forked metrics-tutorial
mirror of
https://github.com/zerotier/metrics-tutorial.git
synced 2026-05-22 16:29:19 -07:00
7 lines
156 B
Docker
7 lines
156 B
Docker
FROM debian:stable
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install curl nginx -y
|
|
RUN curl -s https://install.zerotier.com | bash
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |