You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
227 B
YAML
17 lines
227 B
YAML
2 years ago
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
|
||
|
db:
|
||
|
image: mariadb
|
||
|
container_name: db
|
||
|
environment:
|
||
|
- MARIADB_ROOT_PASSWORD=secret
|
||
|
- MARIADB_DATABASE=mx
|
||
|
|
||
|
app:
|
||
|
build: .
|
||
|
container_name: app
|
||
|
depends_on:
|
||
|
- db
|