2022-10-05 02:51:52 -05:00
|
|
|
# 2022-10-05 Hyperling
|
2023-07-05 18:02:43 -07:00
|
|
|
# Move config to nginx container.
|
2022-10-05 02:51:52 -05:00
|
|
|
# This is because nginx image does not play well with Volumes.
|
|
|
|
# Nextcloud and MariaDB created files in their folders fine, but nginx stays empty.
|
|
|
|
|
|
|
|
FROM nginx
|
|
|
|
|
|
|
|
COPY ./config/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
|
|
|
|
COPY ./config/conf.d/* /etc/nginx/conf.d/
|