mirror of
https://github.com/cmehay/pyentrypoint
synced 2024-10-30 15:21:11 +00:00
46 lines
694 B
YAML
46 lines
694 B
YAML
testpython3:
|
|
build: .
|
|
dockerfile: Dockerfile.py3
|
|
#command: python3 docker_links.py
|
|
links:
|
|
- test1
|
|
- test2
|
|
- test3
|
|
- test4
|
|
|
|
testpython2:
|
|
build: .
|
|
dockerfile: Dockerfile.py2
|
|
#command: python docker_links.py
|
|
links:
|
|
- test1
|
|
- test2
|
|
- test3
|
|
- test4
|
|
|
|
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
|