KhaosDoctor
KhaosDoctor
RRuntipi
Created by KhaosDoctor on 3/16/2025 in #🙋🏼・help
docker compose volumes not mounting files
Hello! I have a HomeAssistant app running using the following docker compose:
services:
homeassistant-1:
image: ghcr.io/home-assistant/home-assistant:2025.3.3
container_name: homeassistant-1
restart: unless-stopped
networks:
- tipi_main_network
environment:
TZ: ${TZ}
ports:
- ${APP_PORT}:8123
volumes:
- /etc/localtime:/etc/localtime:ro
- ${APP_DATA_DIR}/data/config:/config
...
services:
homeassistant-1:
image: ghcr.io/home-assistant/home-assistant:2025.3.3
container_name: homeassistant-1
restart: unless-stopped
networks:
- tipi_main_network
environment:
TZ: ${TZ}
ports:
- ${APP_PORT}:8123
volumes:
- /etc/localtime:/etc/localtime:ro
- ${APP_DATA_DIR}/data/config:/config
...
The problem is that the /config volume is not mounted. It was mounted when I started for the first time, but then it stays the same even if I change the files outside of the container.
6 replies