You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pyentrypoint/docker-compose.yml

76 lines
1.3 KiB
YAML

9 years ago
testpython3:
build: .
dockerfile: Dockerfile.py3
links:
- test1
- test2
- test3
- test4
8 years ago
volumes:
- ./pyentrypoint:/opt/pyentrypoint:ro
- ./tests:/opt/tests
9 years ago
testpython2:
build: .
dockerfile: Dockerfile.py2
links:
- test1
- test2
- test3
- test4
volumes:
- ./pyentrypoint:/opt/pyentrypoint:ro
- ./tests:/opt/tests
testpython3_debug:
build: .
dockerfile: Dockerfile.py3
command: ["py.test", "--verbose", "-s", "-rw", "."]
links:
- test1
- test2
- test3
- test4
volumes:
- ./pyentrypoint:/opt/pyentrypoint:ro
- ./tests:/opt/tests
testpython2_debug:
build: .
dockerfile: Dockerfile.py2
command: ["py.test", "--verbose", "-s", "-rw", "."]
9 years ago
links:
- test1
- test2
- test3
- test4
8 years ago
volumes:
- ./pyentrypoint:/opt/pyentrypoint:ro
- ./tests:/opt/tests
9 years ago
test1:
image: busybox
command: sleep 30
expose:
- 800
- 8001/udp
environment:
FOO: bar
test2:
image: busybox
command: sleep 30
expose:
- 800/udp
- 8001
test3:
image: busybox
command: sleep 30
environment:
FOO: bar
test4:
image: busybox
command: sleep 30