mirror of
https://github.com/bitnami/containers.git
synced 2026-02-11 05:37:27 +08:00
16 lines
337 B
YAML
16 lines
337 B
YAML
version: '2'
|
|
services:
|
|
myapp:
|
|
image: docker.io/bitnami/codeigniter:3
|
|
ports:
|
|
- '8000:8000'
|
|
volumes:
|
|
- '.:/app'
|
|
depends_on:
|
|
- mariadb
|
|
mariadb:
|
|
image: docker.io/bitnami/mariadb:10.6
|
|
environment:
|
|
# ALLOW_EMPTY_PASSWORD is recommended only for development.
|
|
- ALLOW_EMPTY_PASSWORD=yes
|