mirror of
https://github.com/bitnami/containers.git
synced 2026-03-06 15:09:19 +08:00
32 lines
720 B
YAML
32 lines
720 B
YAML
version: '2'
|
|
services:
|
|
mariadb:
|
|
image: 'bitnami/mariadb:latest'
|
|
environment:
|
|
- MARIADB_USER=bn_opencart
|
|
- MARIADB_DATABASE=bitnami_opencart
|
|
- ALLOW_EMPTY_PASSWORD=yes
|
|
volumes:
|
|
- 'mariadb_data:/bitnami'
|
|
opencart:
|
|
image: 'bitnami/opencart:3'
|
|
environment:
|
|
- MARIADB_HOST=mariadb
|
|
- MARIADB_PORT_NUMBER=3306
|
|
- OPENCART_DATABASE_USER=bn_opencart
|
|
- OPENCART_DATABASE_NAME=bitnami_opencart
|
|
- OPENCART_HOST=localhost
|
|
- ALLOW_EMPTY_PASSWORD=yes
|
|
ports:
|
|
- '80:80'
|
|
- '443:443'
|
|
volumes:
|
|
- 'opencart_data:/bitnami'
|
|
depends_on:
|
|
- mariadb
|
|
volumes:
|
|
mariadb_data:
|
|
driver: local
|
|
opencart_data:
|
|
driver: local
|