mirror of
https://github.com/bonfire-networks/bonfire-deploy.git
synced 2025-06-20 15:46:04 +00:00
logging limits
This commit is contained in:
parent
c20e7151b0
commit
b0cc2dd9c2
@ -11,10 +11,10 @@ APP_DOCKER_IMAGE=bonfirenetworks/bonfire:latest-${FLAVOUR}-amd64
|
|||||||
# multi-arch image (built by CI, but currently not working):
|
# multi-arch image (built by CI, but currently not working):
|
||||||
#APP_DOCKER_IMAGE=bonfirenetworks/bonfire:latest-${FLAVOUR}
|
#APP_DOCKER_IMAGE=bonfirenetworks/bonfire:latest-${FLAVOUR}
|
||||||
|
|
||||||
# different flavours or architectures may require different postgres builds:
|
# note that different flavours or architectures may require different postgres builds:
|
||||||
DB_DOCKER_IMAGE=postgres:12-alpine
|
DB_DOCKER_IMAGE=postgres:12-alpine
|
||||||
#DB_DOCKER_IMAGE=postgis/postgis:12-3.2-alpine
|
#DB_DOCKER_IMAGE=postgis/postgis:12-3.3-alpine
|
||||||
#DB_DOCKER_IMAGE=ghcr.io/baosystems/postgis:12-3.2
|
#DB_DOCKER_IMAGE=ghcr.io/baosystems/postgis:12-3.3
|
||||||
|
|
||||||
# enter your instance's domain name
|
# enter your instance's domain name
|
||||||
DOMAIN=bonfire.example.com
|
DOMAIN=bonfire.example.com
|
||||||
|
@ -4,8 +4,11 @@ version: "3.8"
|
|||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: ${APP_DOCKER_IMAGE}
|
image: ${APP_DOCKER_IMAGE}
|
||||||
# logging:
|
logging:
|
||||||
# driver: none
|
driver: "json-file"
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "10"
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
- search
|
- search
|
||||||
|
Loading…
x
Reference in New Issue
Block a user