mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-02 19:57:35 +03:00
9 lines
134 B
Docker
9 lines
134 B
Docker
FROM scratch
|
|
|
|
VOLUME /certs
|
|
VOLUME /www
|
|
EXPOSE 6121
|
|
|
|
ADD main /main
|
|
|
|
CMD ["/main", "-bind=0.0.0.0", "-certpath=/certs/", "-www=/www"]
|