Skip to content

Commit b2efc0c

Browse files
onekiloparsecclaude
andcommitted
Remove /data volume mount from platesolver service
The platesolver image now stores astrometry indexes at /opt/astrometry (not /data/astrometry), so the shared /data bind-mount was shadowing the baked-in indexes and forcing a fresh 10 GB download on every container start. The platesolver is a stateless HTTP service — it doesn't read or write anything under /data — so the volume is simply not needed. Also adds restart: unless-stopped for consistency with other services. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent aba27c4 commit b2efc0c

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

arcsecond/hosting/docker/docker-compose.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,8 @@ services:
102102
platesolver:
103103
image: ghcr.io/arcsecond-io/arcsecond-service-platesolver-astrometry:latest
104104
container_name: arcsecond-platesolver
105+
restart: unless-stopped
105106
ports: [ "8900:8900" ]
106-
volumes:
107-
# Leave /data as is, it's a path inside the container, not in the host machine.
108-
# SHARED_DATA_PATH must be a path of your host machine, specified in the .env file.
109-
- type: bind
110-
source: ${SHARED_DATA_PATH}
111-
target: /data
112-
bind:
113-
create_host_path: true
114107

115108
# Arcsecond webapp.
116109
web:

0 commit comments

Comments
 (0)