cryptgeon/examples/nginx/docker-compose.yaml

23 lines
514 B
YAML
Raw Normal View History

2021-12-16 12:54:15 +00:00
version: '3.8'
services:
memcached:
image: memcached:1-alpine
2022-02-28 23:53:34 +00:00
entrypoint: memcached -m 256 -I 128 # Limit to 128 MB Ram, customize at free will. -m must be at least double than -I.
2021-12-16 12:54:15 +00:00
app:
image: cupcakearmy/cryptgeon:latest
depends_on:
- memcached
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