New to docker, asking if the docker-compose is correct

version: "3.2" services: # Homarr - https://github.com/ajnart/homarr # mkdir /volume1/docker/appdata/homarr # mkdir /volume1/docker/appdata/configs # mkdir /volume1/docker/appdata/icons homarr: container_name: homarr image: ghcr.io/ajnart/homarr:latest restart: unless-stopped logging: driver: json-file options: max-file: ${DOCKERLOGGING_MAXFILE} max-size: ${DOCKERLOGGING_MAXSIZE} labels: - org.hotio.pullio.update=${PULLIO_UPDATE} - org.hotio.pullio.notify=${PULLIO_NOTIFY} - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK} environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} volumes: - ./homarr/configs:/app/data/configs - ./homarr/icons:/app/public/icons ports: - 7575:7575
image.png
Was this page helpful?