version: "3.2" services: database: container_name: chevereto-free-dev_database image: mariadb:focal networks: - chevereto volumes: - database:/var/lib/mysql restart: always environment: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: chevereto MYSQL_USER: chevereto MYSQL_PASSWORD: user_database_password app: container_name: chevereto-free-dev_app image: ghcr.io/rodber/chevereto-free:1.6 networks: - chevereto volumes: - storage:/var/www/html/images/ - content:/var/www/html/content/ - app:/var/www/html/ - type: bind source: ${SOURCE} target: /var/www/chevereto-free ports: - 8910:80 restart: always environment: CHEVERETO_TAG: dev CHEVERETO_DB_HOST: database CHEVERETO_DB_USER: chevereto CHEVERETO_DB_PASS: user_database_password CHEVERETO_DB_PORT: 3306 CHEVERETO_DB_NAME: chevereto CHEVERETO_DISABLE_UPDATE_HTTP: 1 CHEVERETO_DISABLE_UPDATE_CLI: 1 CHEVERETO_HTTPS: 0 volumes: database: content: storage: app: networks: chevereto: