updated chevereto compose
This commit is contained in:
41
TEMPLATE-docker-compose copy.yml
Normal file
41
TEMPLATE-docker-compose copy.yml
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
|
||||
# <REPLACE_NAME>
|
||||
# <DESCRIPTION>
|
||||
# Created by <APP_CREATOR_NAME>
|
||||
# ↳ https://link.to.github
|
||||
|
||||
services:
|
||||
<REPLACE_NAME>:
|
||||
image: # creator/image_name:latest
|
||||
container_name: <REPLACE_NAME>
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
# - /path/to/host:path/in/container
|
||||
# - unique_volume_name:/path/in/container
|
||||
|
||||
# labels:
|
||||
# - 'enabled=true'
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
# ip_address: 127.0.0.1
|
||||
|
||||
# volumes:
|
||||
# unique_volume_name:
|
||||
# driver: local
|
||||
|
||||
# Documentation available at https://link.to.docs
|
@@ -6,9 +6,9 @@
|
||||
# ↳ https://github.com/chevereto/docker
|
||||
|
||||
services:
|
||||
chevereto:
|
||||
image: ghcr.io/chevereto/chevereto:latest
|
||||
container_name: chevereto
|
||||
chevereto-db:
|
||||
image: mariadb:jammy
|
||||
container_name: chevereto-db
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
@@ -30,14 +30,41 @@ services:
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- chevereto-data:/var/www/html/images
|
||||
- /home/fxequals/docker/chevereto/database:/var/www/html/images
|
||||
|
||||
chevereto-server:
|
||||
image: mariadb:jammy
|
||||
container_name: chevereto-db
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
CHEVERETO_DB_HOST: database
|
||||
CHEVERETO_DB_USER: chevereto
|
||||
CHEVERETO_DB_PASS: user_database_password
|
||||
CHEVERETO_DB_PORT: 3306
|
||||
CHEVERETO_DB_NAME: chevereto
|
||||
CHEVERETO_HOSTNAME: ignitedinspirations.net
|
||||
CHEVERETO_HOSTNAME_PATH: /
|
||||
CHEVERETO_HTTPS: 1
|
||||
CHEVERETO_MAX_POST_SIZE: 1G
|
||||
CHEVERETO_MAX_UPLOAD_SIZE: 1G
|
||||
CHEVERETO_SERVICING: server
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/chevereto/storage:/var/www/html/images/
|
||||
- /home/fxequals/docker/chevereto/app:/var/www/html/
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
chevereto-data:
|
||||
driver: local
|
||||
|
||||
# Documentation available at https://v4-docs.chevereto.com/#install
|
Reference in New Issue
Block a user