Frontend/docker-compose.yml

30 lines
710 B
YAML
Raw Permalink Normal View History

version: "3.1"
services:
2021-11-30 23:34:06 -05:00
cre.backend:
image: registry.fyloz.dev:5443/colorrecipesexplorer/backend:latest
environment:
spring_profiles_active: "mysql,debug"
2021-11-17 19:23:13 -05:00
cre_database_url: "mysql://database/cre"
cre_database_username: "root"
cre_database_password: "pass"
CRE_ENABLE_DB_UPDATE: 1
server_port: 9090
ports:
- "9090:9090"
volumes:
- cre_data:/usr/bin/cre/data
- cre_config:/usr/bin/cre/config
2021-11-30 23:34:06 -05:00
cre.database:
image: mysql
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: "pass"
MYSQL_DATABASE: "cre"
ports:
- "3307:3306"
volumes:
cre_data:
cre_config: