14 lines
195 B
YAML
14 lines
195 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis:alpine
|
|
restart: unless-stopped
|
|
|
|
phuncache:
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:8080
|
|
env_file:
|
|
- .env
|