version: "3.8" services: database: image: centos/mariadb-103-centos8 environment: MYSQL_USER: "user" MYSQL_PASSWORD: "password" MYSQL_DATABASE: "foobar" MYSQL_ROOT_PASSWORD: "rootpw" MYSQL_DEFAULT_AUTHENTICATION_PLUGIN: "mysql_native_password" expose: - "3306" restart: no volumes: - /var/lib/mysql/data webappl: image: centos/centos:8 volumes: - upload:/var/upload_area command: ["/bin/bash"]