mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-22 08:16:28 +00:00
Nicco
cacb808117
* restructuring * pin svelte kit version & parallel execution * update svelte kit * correct test result assets * add timeout * correct locale path * simplify crypto * fix for #58 * add verbosity flag * disable flaky test
21 lines
307 B
YAML
21 lines
307 B
YAML
# DEV Compose file.
|
|
# For a production file see: README.md
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:7-alpine
|
|
ports:
|
|
- 6379:6379
|
|
|
|
app:
|
|
# build: .
|
|
image: cupcakearmy/cryptgeon
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
SIZE_LIMIT: 10 MiB
|
|
ports:
|
|
- 1234:5000
|