mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
c1555fc33e
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
11 lines
292 B
Bash
Executable File
11 lines
292 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#
|
|
|
|
DC_IP=$1
|
|
shift
|
|
|
|
docker run --rm --name client -v /tmp/shared:/shared --dns $DC_IP --hostname client.domain.test icewind1991/samba-krb-test-client $@
|