mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-09-04 00:20:39 +00:00
20 lines
268 B
YAML
20 lines
268 B
YAML
# DEV Compose file.
|
|
# For a production file see: README.md
|
|
|
|
version: '3.7'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:7-alpine
|
|
ports:
|
|
- 6379:6379
|
|
|
|
app:
|
|
build: .
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
SIZE_LIMIT: 128M
|
|
ports:
|
|
- 80:5000
|