WordPress with increase max upload to 500mb
50K+
Repository for Basic WordPress training. This version of WordPress we increase upload file size to 500mb.
The image hosted at https://hub.docker.com/r/iamapinan/wordpress
Start service by run command docker compose up -d service will running on http://localhost:8080.
you can open it with web browser.
iamapinan/wordpress:latest.docker run -d --name 'website' -p 80:80 iamapinan/wordpress:latestdocker-compose.yml and add code below to the file.version: '3'
services:
app:
image: iamapinan/wordpress:latest
volumes:
- ./app:/var/www/html
ports:
- 8080:80
links:
- db
db:
image: mariadb
ports:
- 3306
environment:
MYSQL_DATABASE: web_db
MYSQL_ROOT_PASSWORD: securepassword123
docker compose up -ddocker psSee more document from https://hub.docker.com/_/wordpress
Apinan Woratrakun (Nu) contact: [email protected]
Content type
Image
Digest
sha256:f5ce1bd8f…
Size
203.2 MB
Last updated
about 4 years ago
docker pull iamapinan/wordpress