Skip to content

Commit

Permalink
CHANGED: path volumes relative to docker volumes to avoid problems wi…
Browse files Browse the repository at this point in the history
…th sudo in the scope of the github action
  • Loading branch information
AleixMT committed Feb 29, 2024
1 parent 61ffcda commit d90af06
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ services:
- db
- spectra
volumes:
- ./shared/pullin:/shared
- ./shared/backup:/backup
- eln_pullin:/shared
- eln_backup:/backup
- chemotion_data:/chemotion/data/
- chemotion:/chemotion/app
ports:
Expand All @@ -88,8 +88,8 @@ services:
environment:
- SECRET_KEY=imsupersecretandwanttobechanged
volumes:
- ./services/converter/profiles:/srv/chemotion/profiles
- ./services/converter/datasets:/srv/chemotion/datasets
- converter_profiles:/srv/chemotion/profiles
- converter_datasets:/srv/chemotion/datasets
networks:
- chemotion

Expand All @@ -102,6 +102,14 @@ volumes:
name: chemotion_db
spectra:
name: chemotion_spectra
eln_pullin:
name: eln_pullin
eln_backup:
name: eln_backup
converter_datasets:
name: converter_datasets
converter_profiles:
name: converter_profiles

networks:
chemotion:

0 comments on commit d90af06

Please sign in to comment.