d6ba875297
file
19 lines
354 B
YAML
19 lines
354 B
YAML
services:
|
|
backend:
|
|
container_name: chatapp_backend
|
|
image: git.zxq5.dev/zxq5/chatapp-backend:v0.4.1
|
|
ports:
|
|
- "8000:8000"
|
|
depends_on:
|
|
- redis
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- RELEASE_MODE=1
|
|
|
|
redis:
|
|
container_name: chatapp_redis
|
|
image: docker.io/library/redis:alpine
|
|
ports:
|
|
- "6379:6379"
|