Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dc/init-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ cp /var/lib/samba/private/krb5.conf /etc/

service smbd stop
service nmbd stop

service samba-ad-dc start
service samba-ad-dc restart
service samba-ad-dc status

samba-tool domain level show
Expand Down
2 changes: 1 addition & 1 deletion nginx-fpm-gssapi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION
FROM php:$PHP_VERSION-fpm-bullseye

Check warning on line 2 in nginx-fpm-gssapi/Dockerfile

View workflow job for this annotation

GitHub Actions / build-php (8.2, nginx-fpm-gssapi)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG php:$PHP_VERSION-fpm-bullseye results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 2 in nginx-fpm-gssapi/Dockerfile

View workflow job for this annotation

GitHub Actions / build-php (7.4, nginx-fpm-gssapi)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG php:$PHP_VERSION-fpm-bullseye results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 2 in nginx-fpm-gssapi/Dockerfile

View workflow job for this annotation

GitHub Actions / build-php (8.1, nginx-fpm-gssapi)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG php:$PHP_VERSION-fpm-bullseye results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 2 in nginx-fpm-gssapi/Dockerfile

View workflow job for this annotation

GitHub Actions / build-php (8.0, nginx-fpm-gssapi)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG php:$PHP_VERSION-fpm-bullseye results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/
LABEL org.opencontainers.image.source="https://github.com/icewind1991/samba-krb-test"

ADD krb5.seed /krb5.seed
Expand Down Expand Up @@ -33,7 +33,7 @@
docker-php-ext-install gd zip pcntl

COPY libnginx-mod-http-auth-spnego_1.18.0-6.1+deb11u3_amd64.deb /usr/local
RUN dpkg --install /usr/local/libnginx-mod-http-auth-spnego_1.18.0-6.1+deb11u3_amd64.deb
RUN dpkg --force-depends --install /usr/local/libnginx-mod-http-auth-spnego_1.18.0-6.1+deb11u3_amd64.deb
RUN sed -i -e "s|clear_env = yes|clear_env = no|" /usr/local/etc/php-fpm.d/docker.conf

ADD nginx.conf /etc/nginx/nginx.conf
Expand Down
Loading