Skip to content

Commit e2c25c3

Browse files
committed
add volumes to docker-compose
1 parent a368611 commit e2c25c3

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

docker-compose.yaml

+15-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
max-size: 10m
1616
ports:
1717
- '3000:3000'
18-
image: therealpaulgg/ssh-sync-server
18+
image: ssh-sync-server-prerelease
1919
container_name: ssh-sync-server
2020
ssh-sync-db:
2121
image: therealpaulgg/ssh-sync-db:latest
@@ -26,17 +26,28 @@ services:
2626
- POSTGRES_DB=sshsync
2727
restart: always
2828
ssh-sync:
29-
image: 2d277cde6d3ba4b20c2743a62000be589ad767febc24bf04b33106285d7c0457
29+
image: ssh-debug
3030
container_name: ssh-sync
3131
stdin_open: true # Allows Docker container to keep STDIN open
3232
tty: true # Allocates a pseudo-TTY
33+
volumes:
34+
- ssh-sync-volume:/root
3335
ssh-sync-2:
34-
image: 2d277cde6d3ba4b20c2743a62000be589ad767febc24bf04b33106285d7c0457
36+
image: ssh-debug
3537
container_name: ssh-sync-2
3638
stdin_open: true # Allows Docker container to keep STDIN open
3739
tty: true # Allocates a pseudo-TTY
40+
volumes:
41+
- ssh-sync-2-volume:/root
3842
ssh-sync-3:
39-
image: 2d277cde6d3ba4b20c2743a62000be589ad767febc24bf04b33106285d7c0457
43+
image: ssh-debug
4044
container_name: ssh-sync-3
4145
stdin_open: true # Allows Docker container to keep STDIN open
4246
tty: true # Allocates a pseudo-TTY
47+
volumes:
48+
- ssh-sync-3-volume:/root
49+
50+
volumes:
51+
ssh-sync-volume:
52+
ssh-sync-2-volume:
53+
ssh-sync-3-volume:

0 commit comments

Comments
 (0)