16 lines
230 B
YAML
16 lines
230 B
YAML
version: '3'
|
|
services:
|
|
chrome:
|
|
image: selenium/standalone-chrome
|
|
ports:
|
|
- "4444:4444"
|
|
volumes:
|
|
- /dev/shm:/dev/shm
|
|
|
|
reptile:
|
|
build: .
|
|
depends_on:
|
|
- chrome
|
|
volumes:
|
|
- .:/reptile2
|