mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-01-06 15:36:29 +00:00
22 lines
348 B
YAML
22 lines
348 B
YAML
# DEV Compose file.
|
|
# For a production file see: README.md
|
|
|
|
version: '3.7'
|
|
|
|
services:
|
|
memcached:
|
|
image: memcached:1-alpine
|
|
restart: unless-stopped
|
|
entrypoint: memcached -m 128M -I 4M
|
|
ports:
|
|
- 11211:11211
|
|
|
|
app:
|
|
build: .
|
|
depends_on:
|
|
- memcached
|
|
environment:
|
|
SIZE_LIMIT: 4M
|
|
ports:
|
|
- 80:5000
|