Skip to content

Commit fbdc48a

Browse files
Merge pull request #17 from silinternational/feature/update-to-php8.3
Update test containers to PHP 8.3
2 parents c31d6fc + a63da56 commit fbdc48a

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In your `docker-compose.yml`, include a service like:
3232
```
3333
3434
Copy the `local.env.example` file to `local.env` and update it with appropriate values. Using a separate file
35-
for environment configuration helps prevent commiting it to version control with credentials in it.
35+
for environment configuration helps prevent committing it to version control with credentials in it.
3636

3737
Required env vars:
3838
- `DNS_PROVIDER` - A valid value from https://docs.traefik.io/https/acme/#providers. Each provider will also required additional env vars for authentication. For example `cloudflare` requires `CLOUDFLARE_EMAIL` and `CLOUDFLARE_API_KEY`.
@@ -52,7 +52,7 @@ Optional env vars:
5252
## Overriding `traefik.toml`
5353
You'll notice in the `docker-compose.yml` example above a commented out volume for `traefik.toml`. If you
5454
don't want to use the simplified template that comes with this container and want to customize it, just provide
55-
your own config file and volume it in. The entrypoing script looks for specific placeholders and should not
55+
your own config file and volume it in. The entrypoint script looks for specific placeholders and should not
5656
modify your own provided config.
5757

5858
## License - MIT

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ services:
1111
- ./local.env
1212

1313
dev1:
14-
image: silintl/php8:8.1
14+
image: silintl/php8:8.3
1515
ports:
16-
- "80"
16+
- "80"
1717
volumes:
1818
- ./index.php:/data/frontend/web/index.php
1919

2020
dev2:
21-
image: silintl/php8:8.1
21+
image: silintl/php8:8.3
2222
ports:
23-
- "80"
23+
- "80"
2424
volumes:
2525
- ./index.php:/data/frontend/web/index.php
2626

2727
dev3:
28-
image: silintl/php8:8.1
28+
image: silintl/php8:8.3
2929
ports:
30-
- "80"
30+
- "80"
3131
volumes:
3232
- ./index.php:/data/frontend/web/index.php

0 commit comments

Comments
 (0)