14 lines
303 B
YAML
14 lines
303 B
YAML
---
|
|
services:
|
|
workspace:
|
|
image: swift:6.1
|
|
command: sleep infinity
|
|
depends_on: [browser]
|
|
volumes: [..:/workspace:cached, build-tmp:/workspace/.build/]
|
|
browser:
|
|
image: selenium/standalone-chromium:latest
|
|
shm_size: 2gb
|
|
ports: [4444:4444, 7900:7900]
|
|
volumes:
|
|
build-tmp: {}
|