Skip to content

Commit

Permalink
Reverted docker-compose.yml bind mount source path from ./ to ../ sin…
Browse files Browse the repository at this point in the history
…ce the change was not necessary; fixed style for docker-compose.yml
  • Loading branch information
comrumino committed Jul 8, 2021
1 parent 4376350 commit 846a68e
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#
#
# Documentation and examples can be found @ ../docs/docs/advanced-debugging.rst
#
#
---
version: "3.9"
networks:
rpyc-test-net:
Expand All @@ -15,31 +16,32 @@ x-rpyc: &rpyc
- rpyc-test-net
volumes:
- type: bind
source: ./
source: ../
target: /opt/rpyc
read_only: true
command: >
/bin/sh -c "python -m pip install git+https://github.com/tomerfiliba/plumbum.git;
/bin/sh -c "python -m pip install \
git+https://github.com/tomerfiliba/plumbum.git;
python"
services:
rpyc-python-3.10:
container_name: rpyc-3.10
image: python:3.10-rc-buster
<< : *rpyc
<<: *rpyc
rpyc-python-3.9:
container_name: rpyc-3.9
image: python:3.9-buster
<< : *rpyc
<<: *rpyc
rpyc-python-3.8:
container_name: rpyc-3.8
image: python:3.8-buster
<< : *rpyc
<<: *rpyc
rpyc-python-3.7:
container_name: rpyc-3.7
image: python:3.7-buster
<< : *rpyc
<<: *rpyc
rpyc-python-3.6:
container_name: rpyc-3.6
image: python:3.6-buster
<< : *rpyc
<<: *rpyc

0 comments on commit 846a68e

Please sign in to comment.