mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 23:42:07 +01:00
45 lines
1.5 KiB
YAML
45 lines
1.5 KiB
YAML
version: "3"
|
|
|
|
volumes:
|
|
mysql_data:
|
|
romm_resources:
|
|
romm_redis_data:
|
|
|
|
services:
|
|
romm:
|
|
image: rommapp/romm:latest
|
|
container_name: romm
|
|
restart: unless-stopped
|
|
environment:
|
|
- DB_HOST=romm-db
|
|
- DB_NAME=romm # Should match MYSQL_DATABASE in mariadb
|
|
- DB_USER=romm-user # Should match MYSQL_USER in mariadb
|
|
- DB_PASSWD= # Should match MYSQL_PASSWORD in mariadb
|
|
- ROMM_AUTH_SECRET_KEY= # Generate a key with `openssl rand -hex 32`
|
|
- IGDB_CLIENT_ID= # Generate an ID and SECRET in IGDB
|
|
- IGDB_CLIENT_SECRET= # https://api-docs.igdb.com/#account-creation
|
|
- MOBYGAMES_API_KEY= # https://www.mobygames.com/info/api/
|
|
- STEAMGRIDDB_API_KEY # https://github.com/rommapp/romm/wiki/Generate-API-Keys#steamgriddb
|
|
volumes:
|
|
- romm_resources:/romm/resources # Resources fetched from IGDB (covers, screenshots, etc.)
|
|
- romm_redis_data:/redis-data # Cached data for background tasks
|
|
- /path/to/library:/romm/library # Your game library
|
|
- /path/to/assets:/romm/assets # Uploaded saves, states, etc.
|
|
- /path/to/config:/romm/config # Path where config.yml is stored
|
|
ports:
|
|
- 80:8080
|
|
depends_on:
|
|
- romm-db
|
|
|
|
romm-db:
|
|
image: mariadb:latest # if you experience issues, try: linuxserver/mariadb:latest
|
|
container_name: romm-db
|
|
restart: unless-stopped
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD= # Use a unique, secure password
|
|
- MYSQL_DATABASE=romm
|
|
- MYSQL_USER=romm-user
|
|
- MYSQL_PASSWORD=
|
|
volumes:
|
|
- mysql_data:/var/lib/mysql
|