Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker image from php 7 to 8 #1059

Merged
merged 1 commit into from
Jun 5, 2024
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
5 changes: 3 additions & 2 deletions docker/DOCKERHUB-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ It recommended that you choose a specific version number tag instead of using 'l
See example file here:
https://github.com/cypht-org/cypht/blob/master/docker/docker-compose.yaml

* Starts a database container to be for user authentication
* Starts the Cypht container available on port 80 of the host with ...
* Copy it to where ever you want. It does not need to be in the repo.
* Starts a database container to be for user authentication.
* Starts the Cypht container available on port 80 of the host with:
* A local volume declared for persisting user settings across container reboots
* An initial user account for authentication
* Environment variables for accessing the database container
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:7.4.33-fpm-alpine
FROM php:8.1-fpm-alpine

WORKDIR "/usr/local/share/cypht"

Expand Down