We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0cee30 commit 3f93fdaCopy full SHA for 3f93fda
docker-compose.yml
@@ -1,14 +1,17 @@
1
version: '3.4'
2
services:
3
geocosicorr3d:
4
- image: geocosicorr3d
+ # Use a more descriptive image name with a tag
5
+ image: geocosicorr3d:latest
6
platform: linux/amd64
7
build:
8
context: .
9
volumes:
10
+ # Bind the current directory to the app directory inside the container
11
- type: bind
12
source: ${PWD}
13
target: /usr/src/app/geoCosiCorr3D
14
+ # Bind the /home/cosicorr directory on the host to the same directory inside the container
15
- source: /home/cosicorr
- target: /home/cosicorr
16
+ source: ${HOME}
17
+ target: /home/user
0 commit comments