forked from keven1024/chevereto-free-multi-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
httpd-php.yml
46 lines (42 loc) · 1 KB
/
httpd-php.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version: "3.2"
services:
database:
container_name: chevereto-free_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
chevereto:
container_name: chevereto-free_app
image: ghcr.io/rodber/chevereto-free:1.6
networks:
- chevereto
volumes:
- storage:/var/www/html/images/
- content:/var/www/html/content/
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
CHEVERETO_DISABLE_UPDATE_HTTP: 1
CHEVERETO_DISABLE_UPDATE_CLI: 1
CHEVERETO_HTTPS: 0
volumes:
database:
content:
storage:
networks:
chevereto: