You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
234 B
12 lines
234 B
ARG CADDY_VERSION=2
|
|
FROM caddy:${CADDY_VERSION}-alpine
|
|
|
|
COPY Caddyfile /etc/caddy/
|
|
COPY http/ /srv/http/
|
|
|
|
#COPY php-fpm/www.conf /etc/php81/php-fpm.d/
|
|
#COPY php-fpm/php.ini /etc/php81/
|
|
|
|
VOLUME ["/srv/http"]
|
|
|
|
#ENTRYPOINT ["caddy.run"]
|
|
|