1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
This commit is contained in:
kev 2020-02-09 20:12:43 +08:00
parent 23e67d7576
commit 5e42d25ceb
6 changed files with 50 additions and 42 deletions

View File

@ -2,7 +2,7 @@
# Dockerfile for icecast-arm
#
FROM easypi/alpine-arm
FROM arm32v7/alpine:3
MAINTAINER EasyPi Software Foundation

View File

@ -2,4 +2,4 @@ icecast:
image: easypi/icecast-arm
ports:
- "8000:8000"
restart: always
restart: unless-stopped

View File

@ -2,4 +2,4 @@ icecast:
image: vimagick/icecast
ports:
- "8000:8000"
restart: always
restart: unless-stopped

View File

@ -2,7 +2,7 @@
# Dockerfile for mpd-arm
#
FROM easypi/alpine-arm
FROM arm32v7/alpine:3
MAINTAINER EasyPi Software Foundation
RUN apk add --no-cache mpd mpc

View File

@ -1,3 +1,7 @@
version: "3.7"
services:
mpd:
image: easypi/mpd-arm
ports:
@ -9,12 +13,12 @@ mpd:
- ./playlists:/var/lib/mpd/playlists
devices:
- /dev/snd
links:
depends_on:
- icecast
restart: always
restart: unless-stopped
icecast:
image: easypi/icecast-arm
ports:
- "8000:8000"
restart: always
restart: unless-stopped

View File

@ -1,3 +1,7 @@
version: "3.7"
services:
mpd:
image: vimagick/mpd
ports:
@ -9,12 +13,12 @@ mpd:
- ./playlists:/var/lib/mpd/playlists
devices:
- /dev/snd
links:
depends_on:
- icecast
restart: always
restart: unless-stopped
icecast:
image: vimagick/icecast
ports:
- "8000:8000"
restart: always
restart: unless-stopped