mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-22 08:16:28 +00:00
Nicco
c3b1772728
* testing * try playwrigth * testing * add pr support * not on each commit * add test ids * make backend more configuratble * 2.0.2 * spec
20 lines
273 B
YAML
20 lines
273 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: .
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
SIZE_LIMIT: 128 MiB
|
|
ports:
|
|
- 1234:5000
|