mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
13 lines
273 B
Plaintext
13 lines
273 B
Plaintext
|
version: "3"
|
||
|
services:
|
||
|
funkwhale:
|
||
|
container_name: funkwhale
|
||
|
restart: unless-stopped
|
||
|
image: funkwhale/all-in-one:{{funkwhale_version}}
|
||
|
env_file: env
|
||
|
volumes:
|
||
|
- data:/data
|
||
|
ports:
|
||
|
- "127.0.0.1:{{http_port}}:{{http_port}}"
|
||
|
volumes:
|
||
|
data:
|