Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Migrate to 4.8.1 and add MSSQL driver. #11

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ services:
## Tags

```
michalhosna/adminer:4.7.7-en_v1
michalhosna/adminer:4.8.1-en_v1
```

- `4.7.7` = Adminer version
- `4.8.1` = Adminer version
- `en` = Adminer flavour (as in https://github.com/vrana/adminer/releases)
- `v1` = Image version, when something else than adminer version in this repository changes

Expand Down
5 changes: 3 additions & 2 deletions src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ RUN apk add --no-cache \
php7-pdo_odbc \
php7-pdo_pgsql \
php7-pdo_sqlite \
php7-pdo_dblib \
php7-session

WORKDIR /var/adminer

ARG ADMINER_VERSION=4.7.0
ARG ADMINER_VERSION=4.8.1
ARG ADMINER_FLAVOUR="-en"
ARG ADMINER_CHECKSUM="d2884278a3f331673c9fe58d3456db875a48270fd7b7ba37492d132b074d0eaa"
ARG ADMINER_CHECKSUM="4ec36be619bb571e2b5a5d4051bfe06f3fcadb3004969b993f2535f6ce28116b"

RUN curl -L https://github.com/vrana/adminer/releases/download/v${ADMINER_VERSION}/adminer-${ADMINER_VERSION}${ADMINER_FLAVOUR}.php -o adminer.php && \
echo "${ADMINER_CHECKSUM} adminer.php"|sha256sum -c -
Expand Down
7 changes: 5 additions & 2 deletions src/php.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
memory_limit = 1G
post_max_size = 1G
upload_max_filesize = 1G
post_max_size = 1G
memory_limit = 1G
max_execution_time = 600
max_input_vars = 5000
variables_order = "EGPCS"
opcache.validate_timestamps = 0