File size: 258 Bytes
31519ff 17389c5 c41bf1f 17389c5 083e7e0 | 1 2 3 4 5 6 7 8 9 10 11 | FROM searxng/searxng:latest
# Set base URL
ENV SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
# Create config directory with proper permissions
RUN mkdir -p /etc/searxng && chmod 777 /etc/searxng
# Copy configuration
COPY ./searxng /etc/searxng
|