mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
9 lines
274 B
Docker
9 lines
274 B
Docker
# docker build -t clickhouse/integration-helper .
|
|
# Helper docker container to run iptables without sudo
|
|
|
|
FROM alpine:3.18
|
|
RUN apk add --no-cache -U iproute2 \
|
|
&& for bin in iptables iptables-restore iptables-save; \
|
|
do ln -sf xtables-nft-multi "/sbin/$bin"; \
|
|
done
|