cryptgeon/docker-compose.yml

20 lines
273 B
YAML
Raw Normal View History

2021-05-02 14:02:40 +02:00
# DEV Compose file.
2021-05-02 14:54:57 +02:00
# For a production file see: README.md
2021-05-02 14:02:40 +02:00
version: '3.8'
2021-05-02 03:07:08 +02:00
services:
redis:
image: redis:7-alpine
2021-05-02 03:07:08 +02:00
ports:
- 6379:6379
2021-05-02 13:53:48 +02:00
app:
build: .
2021-05-04 19:30:25 +02:00
depends_on:
- redis
2021-12-22 14:56:33 +01:00
environment:
SIZE_LIMIT: 128 MiB
2021-05-02 13:53:48 +02:00
ports:
2022-07-19 21:36:56 +02:00
- 1234:5000