1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 09:04:12 +02:00

nixpkgs 25.11, drop 8.1 image

This commit is contained in:
Robin Appelman 2025-12-01 19:15:23 +01:00
commit 35967a8912
4 changed files with 16 additions and 17 deletions

View file

@ -33,18 +33,17 @@ See the [configuration section](#configuration) for more options.
### Quick examples
- Start a Nextcloud instance with `postgresql`, `php 8.1` and `s3` primary
storage:
- Start a Nextcloud instance with `postgresql`, and `s3` primary storage:
```bash
haze start pgsql s3
```
- Start a Nextcloud instance with `sqlite`, `php 8.2` and an `smb` external
- Start a Nextcloud instance with `sqlite`, `php 8.3` and an `smb` external
storage:
```bash
haze start 8.2 smb
haze start 8.3 smb
```
- Run specific units test against an `oracle` database
@ -62,9 +61,10 @@ haze start [database] [php-version] [services]
Where `database` is one of `sqlite`, `mysql`, `mariadb`, `pgsql` or `oracle`
with an optional version (e.g. `pgsql:12`), defaults to `sqlite`. And
`php-version` is one of `8.1`, `8.2`, `8.3`, defaults to `8.1`. `7.3` and `7.4`
and `8.0` are still supported but the docker images for those versions aren't
being updated anymore so they might be missing some newer features.
`php-version` is one of `8.2`, `8.3` or `8.4`, defaults to the maximum version
support by the current Nextcloud version. `7.3` till `8.1` are still supported
but the docker images for those versions aren't being updated anymore so they
might be missing some newer features.
Each php version also comes with a `-dbg` variant that has php compiled in debug
mode and can be used for debugging php itself with gdb.