| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- version: '3'
- services:
- db:
- image: mariadb:10.1.22
- volumes:
- - database:/var/lib/mysql:rw
- restart: always
- networks:
- - private
- environment:
- MYSQL_ROOT_PASSWORD: chevereto_root
- MYSQL_DATABASE: chevereto
- MYSQL_USER: chevereto
- MYSQL_PASSWORD: chevereto
- chevereto:
- depends_on:
- - db
- image: nmtan/chevereto:latest
- restart: always
- networks:
- - private
- environment:
- CHEVERETO_DB_HOST: db
- CHEVERETO_DB_USERNAME: chevereto
- CHEVERETO_DB_PASSWORD: chevereto
- CHEVERETO_DB_NAME: chevereto
- CHEVERETO_DB_PREFIX: chv_
- volumes:
- - chevereto_images:/var/www/html/images:rw
- - ./php.ini:/usr/local/etc/php/php.ini:ro
- ports:
- - 8080:80
- networks:
- private:
- volumes:
- database:
- chevereto_images:
|