mirror of
https://github.com/bitnami/containers.git
synced 2026-03-09 15:40:15 +08:00
13 lines
208 B
YAML
13 lines
208 B
YAML
version: '2'
|
|
services:
|
|
myapp:
|
|
image: bitnami/codeigniter:latest
|
|
ports:
|
|
- '8000:8000'
|
|
volumes:
|
|
- '.:/app'
|
|
depends_on:
|
|
- mariadb
|
|
mariadb:
|
|
image: bitnami/mariadb:latest
|