forked from rawdlite/docker-rompr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.sample
More file actions
36 lines (36 loc) · 777 Bytes
/
docker-compose.sample
File metadata and controls
36 lines (36 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: "3"
services:
mopidy:
image: rawdlite/mopidy
container_name: mopidy
devices:
- "/dev/snd"
ports:
- "6600:6600"
- "6680:6680"
restart: always
volumes:
- ~/.config/:/root/.config/
- /data/music/:/data/music/
mysql:
image: linuxserver/mariadb
restart: unless-stopped
container_name: mysql
environment:
- PUID=1000
- PGID=1000
- MYSQL_ROOT_PASSWORD=b4FUk4mF>3As3aA
- TZ=Europe/Berlin
- MYSQL_DATABASE=romprdb
- MYSQL_USER=rompr
- MYSQL_PASSWORD==romprdbpass
volumes:
- /home/dietpi/db_config:/config
ports:
- "3306:3306"
rompr:
image: rawdlite/rompr:latest
container_name: rompr
restart: always
ports:
- "80:80"