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

22 lines
489 B
YAML
Raw Normal View History

2022-10-26 11:15:56 +00:00
services:
beatsaber-overlay:
2023-03-27 21:03:26 +00:00
image: git.fascinated.cc/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:
2022-10-27 20:14:35 +00:00
- PUID=1000
- PGID=1000
2022-10-26 11:15:56 +00:00
- REDIS_PASSWORD=<PASSWORD>
2022-10-27 20:14:35 +00:00
volumes:
- /home/<folder>/redis:/bitnami/redis/data
2022-10-26 11:15:56 +00:00
command: /opt/bitnami/scripts/redis/run.sh --maxmemory 512mb