14 lines
No EOL
191 B
YAML
14 lines
No EOL
191 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
db:
|
|
image: mariadb
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
|
|
|
app:
|
|
build: .
|
|
ports:
|
|
- ${PORT}:80
|
|
links:
|
|
- db |