mirror of
https://github.com/bitnami/containers.git
synced 2026-02-27 15:07:25 +08:00
17 lines
311 B
YAML
17 lines
311 B
YAML
version: '2'
|
|
services:
|
|
myapp:
|
|
image: 'bitnami/codeigniter:latest'
|
|
labels:
|
|
kompose.service.type: nodeport
|
|
ports:
|
|
- '8000:8000'
|
|
volumes:
|
|
- '.:/app'
|
|
depends_on:
|
|
- mariadb
|
|
mariadb:
|
|
image: 'bitnami/mariadb:latest'
|
|
environment:
|
|
- ALLOW_EMPTY_PASSWORD=yes
|