17 lines
347 B
YAML
17 lines
347 B
YAML
version: "3.1"
|
|
|
|
services:
|
|
cre.frontend:
|
|
image: fyloz.dev:5443/color-recipes-explorer/frontend:latest
|
|
ports:
|
|
- "4200:80"
|
|
cre.database:
|
|
image: mysql
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: "pass"
|
|
MYSQL_DATABASE: "cre"
|
|
ports:
|
|
- "3306:3306"
|
|
|