This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/docker-compose.yml

17 lines
372 B
YAML
Raw Normal View History

2022-10-26 11:15:56 +00:00
services:
beatsaber-overlay:
image: fascinated/beatsaber-overlay:latest
2022-10-26 14:07:33 +00:00
restart: always
2022-10-26 11:15:56 +00:00
env_file:
- .env.production
ports:
- 3000:3000
depends_on:
- redis
redis:
image: bitnami/redis:latest
2022-10-26 14:07:33 +00:00
restart: always
2022-10-26 11:15:56 +00:00
environment:
- REDIS_PASSWORD=<PASSWORD>
command: /opt/bitnami/scripts/redis/run.sh --maxmemory 512mb