mirror of
https://github.com/kou029w/nttr.fly.dev.git
synced 2025-01-19 00:18:07 +00:00
13 lines
229 B
YAML
13 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
|