File: docker-compose.yml

package info (click to toggle)
rpyc 6.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,324 kB
  • sloc: python: 6,442; makefile: 122
file content (47 lines) | stat: -rw-r--r-- 1,013 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Documentation and examples can be found @ ../docs/docs/advanced-debugging.rst
#
---
version: "3.9"
networks:
  rpyc-test-net:
    internal: false
# extension field for common rpyc service settings
x-rpyc: &rpyc
  environment:
    - PYTHONPATH=/opt/rpyc
  stdin_open: true
  tty: true
  networks:
    - rpyc-test-net
  volumes:
    - type: bind
      source: ../
      target: /opt/rpyc
      read_only: true
  command: >
    /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-python-3.9:
    container_name: rpyc-3.9
    image: python:3.9-buster
    <<: *rpyc
  rpyc-python-3.8:
    container_name: rpyc-3.8
    image: python:3.8-buster
    <<: *rpyc
  rpyc-python-3.7:
    container_name: rpyc-3.7
    image: python:3.7-buster
    <<: *rpyc
  rpyc-python-3.6:
    container_name: rpyc-3.6
    image: python:3.6-buster
    <<: *rpyc