2 Commits

Author SHA1 Message Date
6117157598 DockerFile link to repository
* Fixed issue
2024-01-22 02:01:39 +02:00
79e44bd88a + Production docker-compose.yml 2024-01-22 01:59:38 +02:00
2 changed files with 16 additions and 0 deletions

View File

@@ -2,6 +2,8 @@
FROM debian:bullseye FROM debian:bullseye
ENV IS_DOCKER TRUE ENV IS_DOCKER TRUE
LABEL org.opencontainers.image.source https://github.com/JustKato/drive-health
# Install build dependencies and runtime dependencies # Install build dependencies and runtime dependencies
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
gcc \ gcc \

14
docker-compose.prod.yml Normal file
View File

@@ -0,0 +1,14 @@
version: "3.8"
services:
drive-health:
# Build the current image
image: ghcr.io/justkato/drive-health:latest
# Read straight from the .env file, or use the environment path
env_file:
- .env
volumes:
- ./dev_data:/data
# Setup application ports
ports:
- 8080:8080