mirror of
https://github.com/Thumbscrew/nextcloud-docker-compose.git
synced 2024-11-09 23:53:53 +00:00
9 lines
232 B
Docker
9 lines
232 B
Docker
|
FROM nginx:latest
|
||
|
|
||
|
COPY default.conf /tmp/nginx/default.conf
|
||
|
|
||
|
COPY docker-entrypoint.sh /tmp/docker-entrypoint.sh
|
||
|
RUN chmod 755 /tmp/docker-entrypoint.sh
|
||
|
ENTRYPOINT [ "/tmp/docker-entrypoint.sh" ]
|
||
|
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|