2021-07-12 23:21:27 -04:00
|
|
|
version: "3.1"
|
|
|
|
|
|
|
|
services:
|
2021-12-22 15:42:48 -05:00
|
|
|
cre.frontend:
|
2021-07-12 23:21:27 -04:00
|
|
|
image: fyloz.dev:5443/color-recipes-explorer/frontend:latest
|
|
|
|
ports:
|
2021-12-22 15:42:48 -05:00
|
|
|
- "4200:80"
|
|
|
|
cre.database:
|
2021-07-12 23:21:27 -04:00
|
|
|
image: mysql
|
|
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
|
|
environment:
|
|
|
|
MYSQL_ROOT_PASSWORD: "pass"
|
|
|
|
MYSQL_DATABASE: "cre"
|
|
|
|
ports:
|
2021-12-22 15:42:48 -05:00
|
|
|
- "3306:3306"
|
2021-07-12 23:21:27 -04:00
|
|
|
|