Compare commits

...

2 Commits

Author SHA1 Message Date
Edward Shen b04fac9b01
Added docker-compose file 2021-07-18 21:36:54 -04:00
Edward Shen 5aa72e9821
Add parser directive to Dockerfile 2021-07-18 21:33:56 -04:00
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,5 @@
# syntax=docker/dockerfile:1
FROM rust:alpine as builder
COPY . .
RUN apk add --no-cache file make musl-dev \

9
docker-compose.yml Normal file
View File

@ -0,0 +1,9 @@
version: "3.9"
services:
mangadex-home:
build: .
ports:
- "443:443"
volumes:
- ./cache:/cache
- ./settings.yaml:/settings.yaml