Fixed docker installation on Windows 11 Pro (#675)

This commit is contained in:
Marija Jemuovic
2025-05-09 08:33:58 +02:00
committed by GitHub
parent 81e7df416f
commit 76fb26baf4
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
FROM python:3.10-slim-bullseye FROM python:3.10-slim-bullseye
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED=1
RUN apt-get update && apt-get install -y libcairo2-dev gcc RUN apt-get update && apt-get install -y libcairo2-dev gcc

View File

@@ -8,7 +8,7 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
DATABASE_URL: "postgres://postgres:postgres@db:5432/horilla" DATABASE_URL: "postgres://postgres:postgres@db:5432/horilla"
command: ./entrypoint.sh command: sh ./entrypoint.sh
volumes: volumes:
- ./horilla:/app/horilla - ./horilla:/app/horilla
depends_on: depends_on: