Commit 364106fe authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Changed README.txt + transfer_service Dockerfile.

parent 43281385
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -5,8 +5,6 @@ Simple communication test that involes 5 docker containers:
- Redis (container_name: redis)
- File catalog (container_name: file_catalog)

These last two containers are employed to test transfers using xrootd python bindings (ignore them for now)

###############################################################################################################

You can start the whole environment with (launch the following command from the 'docker' dir):
+4 −0
Original line number Diff line number Diff line
@@ -31,6 +31,10 @@ RUN dnf -y install python3-pika python3-redis python3-paramiko
#USER transfer_service

# Create a 'store' directory with a file
RUN mkdir /home/transfer_service/store && touch /home/transfer_service/store/foo.txt && \
    chown -R transfer_service:transfer_service /home/transfer_service/store && \
    chmod -R 755 /home/transfer_service/store

RUN mkdir /home/ccarbone/store && touch /home/ccarbone/store/foo.txt && \
    chown -R ccarbone:ccarbone /home/ccarbone/store && \
    chmod -R 755 /home/ccarbone/store