mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-17 11:07:04 +01:00
19 lines
425 B
YAML
19 lines
425 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:7-alpine
|
|
# Set a size limit. See link below on how to customise.
|
|
# https://redis.io/docs/manual/eviction/
|
|
# command: redis-server --maxmemory 1gb --maxmemory-policy allkeys-lru
|
|
|
|
app:
|
|
image: cupcakearmy/cryptgeon:latest
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
# Size limit for a single note.
|
|
SIZE_LIMIT: 4 MiB
|
|
ports:
|
|
- 80:8000
|