Skip to content

Commit

Permalink
ci: volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyTubongbanua committed Jul 4, 2023
1 parent 0be098c commit 2b0a618
Showing 1 changed file with 35 additions and 4 deletions.
39 changes: 35 additions & 4 deletions packages/sshnoports/test/end2end_tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,47 @@ services:
image: atsigncompany/sshnp-e2e-runtime:branch-trunk
container_name: sshnpd_trunk
volumes:
- ./contexts/sshnpd/keys/:/atsign/.atsign/keys/ # mount keys
- ./contexts/sshnpd/entrypoint.sh:/atsign/entrypoint.sh # mount entrypoint
- sshnpd-keys:/atsign/.atsign/keys/ # mount keys
- sshnpd-entrypoint:/atsign/entrypoint.sh # mount entrypoint
depends_on:
- image-runtime-trunk
container-trunk-sshnp:
image: atsigncompany/sshnp-e2e-runtime:branch-trunk
container_name: sshnp_trunk
volumes:
- ./contexts/sshnp/keys/:/atsign/.atsign/keys/ # mount keys
- ./contexts/sshnp/entrypoint.sh:/atsign/entrypoint.sh # mount entrypoint
- sshnp-keys:/atsign/.atsign/keys/ # mount keys
- sshnp-entrypoint:/atsign/entrypoint.sh # mount entrypoint
depends_on:
- image-runtime-trunk
- container-trunk-sshnpd


volumes:
sshnpd-keys:
name: sshnpd-keys
driver: local
driver_opts:
type: none
o: bind
device: ./context/sshnpd/keys/
sshnpd-entrypoint:
name: sshnpd-entrypoint
driver: local
driver_opts:
type: none
o: bind
device: ./context/sshnpd/entrypoint.sh
sshnp-keys:
name: sshnp-keys
driver: local
driver_opts:
type: none
o: bind
device: ./context/sshnp/keys/
sshnp-entrypoint:
name: sshnp-entrypoint
driver: local
driver_opts:
type: none
o: bind
device: ./context/sshnp/entrypoint.sh

0 comments on commit 2b0a618

Please sign in to comment.