mirror of
https://github.com/OPSnet/ApolloStatus.git
synced 2026-01-16 20:04:35 -05:00
24 lines
364 B
YAML
24 lines
364 B
YAML
version: '3'
|
|
|
|
services:
|
|
status:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
- REDIS_PORT=6379
|
|
- REDIS_HOST=redis
|
|
- LOG_LEVEL=debug
|
|
volumes:
|
|
- .:/srv
|
|
restart: always
|
|
redis:
|
|
image: redis:4.0-alpine
|
|
volumes:
|
|
- redis-data:/data
|
|
restart: always
|
|
|
|
volumes:
|
|
redis-data: |