chevereto-free/httpd-php.yml

47 lines
1.0 KiB
YAML
Raw Normal View History

2021-11-20 14:34:06 +00:00
version: "3.2"
services:
database:
container_name: chevereto-free_database
image: mariadb:focal
networks:
- chevereto
volumes:
2021-11-20 23:28:28 +00:00
- database:/var/lib/mysql
2021-11-20 14:34:06 +00:00
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: chevereto
MYSQL_USER: chevereto
MYSQL_PASSWORD: user_database_password
2021-11-27 15:24:19 +00:00
chevereto:
2021-11-20 14:34:06 +00:00
container_name: chevereto-free_app
2021-11-27 12:09:15 +00:00
image: ghcr.io/rodber/chevereto-free:1.6
2021-11-20 14:34:06 +00:00
networks:
- chevereto
volumes:
- storage:/var/www/html/images/
2021-11-20 23:28:28 +00:00
- content:/var/www/html/content/
2021-11-20 14:34:06 +00:00
ports:
- 8810:80
restart: always
environment:
CHEVERETO_TAG: "free"
CHEVERETO_DB_HOST: database
CHEVERETO_DB_USER: chevereto
CHEVERETO_DB_PASS: user_database_password
CHEVERETO_DB_PORT: 3306
CHEVERETO_DB_NAME: chevereto
2021-11-27 15:24:19 +00:00
CHEVERETO_DISABLE_UPDATE_HTTP: 1
CHEVERETO_DISABLE_UPDATE_CLI: 1
2021-11-20 14:34:06 +00:00
CHEVERETO_HTTPS: 0
volumes:
2021-11-20 23:28:28 +00:00
database:
content:
2021-11-20 14:34:06 +00:00
storage:
networks:
chevereto: