mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-01 04:44:16 +01:00
Nicco
9590c9b567
* use redis * update frontend and switch sanitize library * changelog * theming * docker image * documentation * changelog * clear up limit sizes * version bump * version bump
22 lines
379 B
YAML
22 lines
379 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:7-alpine
|
|
|
|
app:
|
|
image: cupcakearmy/cryptgeon:latest
|
|
depends_on:
|
|
- redis
|
|
|
|
proxy:
|
|
image: nginx:alpine
|
|
depends_on:
|
|
- app
|
|
volumes:
|
|
- ./nginx-plain.conf:/etc/nginx/conf.d/default.conf
|
|
# Or with tls
|
|
# - ./nginx-tls.conf:/etc/nginx/conf.d/default.conf
|
|
ports:
|
|
- 80:80
|