forked from GithubBackups/vichan
- Updated Docker Compose configuration for web, PHP, and database services. - Added Redis service with health checks and environment variables. - Improved error handling and user prompts in installation scripts. - Introduced example environment variables for easier configuration. - Updated Nginx and PHP Docker images to latest versions.
9 lines
155 B
Docker
9 lines
155 B
Docker
FROM nginx:1.27.5-alpine-slim
|
|
|
|
COPY . /code
|
|
RUN adduser --system www-data \
|
|
&& adduser www-data www-data
|
|
|
|
CMD [ "nginx", "-g", "daemon off;" ]
|
|
EXPOSE 80
|