mirror of
https://github.com/kou029w/nttr.fly.dev.git
synced 2025-01-18 16:08:02 +00:00
12 lines
229 B
YAML
12 lines
229 B
YAML
services:
|
|
app:
|
|
image: kou029w/nttr
|
|
build: "."
|
|
ports: ["8080:8080"]
|
|
depends_on: [redis]
|
|
environment:
|
|
REDIS_HOST: redis
|
|
REDIS_PORT: "6379"
|
|
REDIS_PASSWORD: ""
|
|
redis:
|
|
image: redis:alpine
|