mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add tile38-arm
This commit is contained in:
parent
d18d79b475
commit
b336b80910
@ -59,6 +59,7 @@ A collection of delicious docker recipes.
|
||||
- [x] hbdg :+1:
|
||||
- [x] node-red :+1:
|
||||
- [x] mosquitto :+1:
|
||||
- [x] tile38-arm :+1:
|
||||
|
||||
## Automation
|
||||
|
||||
|
20
tile38/arm/Dockerfile
Normal file
20
tile38/arm/Dockerfile
Normal file
@ -0,0 +1,20 @@
|
||||
#
|
||||
# Dockerfile for tile38-arm
|
||||
#
|
||||
|
||||
FROM alpine:3
|
||||
MAINTAINER EasyPi Software Foundation
|
||||
|
||||
ENV TILE38_VERSION=1.25.3
|
||||
ENV TILE38_FILE=tile38-${TILE38_VERSION}-linux-arm.tar.gz
|
||||
ENV TILE38_URL=https://github.com/tidwall/tile38/releases/download/${TILE38_VERSION}/${TILE38_FILE}
|
||||
|
||||
RUN set -xe \
|
||||
&& apk add --no-cache ca-certificates curl tar \
|
||||
&& cd /usr/local/bin \
|
||||
&& curl -sSL ${TILE38_URL} | tar xz --strip 1
|
||||
|
||||
VOLUME /data
|
||||
EXPOSE 9851
|
||||
|
||||
CMD ["tile38-server", "-d", "/data"]
|
9
tile38/arm/docker-compose.yml
Normal file
9
tile38/arm/docker-compose.yml
Normal file
@ -0,0 +1,9 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
tile38:
|
||||
image: easypi/tile38-arm
|
||||
ports:
|
||||
- "9851:9851"
|
||||
volumes:
|
||||
- ./data:/data
|
||||
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user