mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-17 11:07:04 +01:00
19 lines
253 B
YAML
19 lines
253 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: .
|
|
env_file: .dev.env
|
|
depends_on:
|
|
- redis
|
|
ports:
|
|
- 1234:8000
|