2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-21 13:23:02 +01: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 # Dockerfile for icecast-arm
# #
FROM easypi/alpine-arm FROM arm32v7/alpine:3
MAINTAINER EasyPi Software Foundation MAINTAINER EasyPi Software Foundation

View File

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

View File

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

View File

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

View File

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

View File

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