mirror of
https://github.com/bitnami/containers.git
synced 2026-03-30 14:57:50 +08:00
[bitnami/wordpress] Release 6.8.1-debian-12-r8 (#82729)
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
@@ -8,7 +8,7 @@ ARG TARGETARCH
|
||||
|
||||
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
|
||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
||||
org.opencontainers.image.created="2025-06-26T06:35:46Z" \
|
||||
org.opencontainers.image.created="2025-06-27T06:55:30Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/wordpress/README.md" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/wordpress" \
|
||||
|
||||
32
bitnami/wordpress/6/debian-12/docker-compose-mysql.yml
Normal file
32
bitnami/wordpress/6/debian-12/docker-compose-mysql.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
# Copyright Broadcom, Inc. All Rights Reserved.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
services:
|
||||
mysql:
|
||||
image: docker.io/bitnami/mysql:latest
|
||||
volumes:
|
||||
- 'mysql_data:/bitnami/mysql'
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
- MYSQL_USER=bn_wordpress
|
||||
- MYSQL_DATABASE=bitnami_wordpress
|
||||
wordpress:
|
||||
image: docker.io/bitnami/wordpress:6
|
||||
ports:
|
||||
- '80:8080'
|
||||
- '443:8443'
|
||||
volumes:
|
||||
- 'wordpress_data:/bitnami/wordpress'
|
||||
depends_on:
|
||||
- mysql
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
- WORDPRESS_DATABASE_HOST=mysql
|
||||
- WORDPRESS_DATABASE_PORT_NUMBER=3306
|
||||
- WORDPRESS_DATABASE_USER=bn_wordpress
|
||||
- WORDPRESS_DATABASE_NAME=bitnami_wordpress
|
||||
volumes:
|
||||
mysql_data:
|
||||
driver: local
|
||||
wordpress_data:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user