version: "3.1" services: cre.backend: image: registry.fyloz.dev:5443/colorrecipesexplorer/backend:latest environment: spring_profiles_active: "mysql,debug" 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 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: