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.

19 lines
256 B
YAML

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
ports:
- 3000:3000