Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '3'
- services:
- app:
- container_name: fraud_app
- build:
- context: ..
- dockerfile: docker/Dockerfile
- ports:
- - "8888:8888"
- volumes:
- - ".:/webapp"
- env_file: .development.env
- depends_on:
- - mariadb
- links:
- - mariadb
- mariadb:
- image: mariadb
- environment:
- - MYSQL_USER=admin
- - MYSQL_PASSWORD=password
- - MYSQL_DATABASE=fraud_score
- - MYSQL_ALLOW_EMPTY_PASSWORD=yes
- command: "--character-set-server=utf8mb4"
Advertisement
Add Comment
Please, Sign In to add comment