putty/.devcontainer/docker-compose.yaml

15 lines
325 B
YAML

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