1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/playwright/docker-compose.yml

16 lines
324 B
YAML
Raw Normal View History

2021-08-04 05:32:37 +00:00
playwright:
image: mcr.microsoft.com/playwright:focal
command: sleep inf
container_name: playwright
user: pwuser
ipc: host
security_opt:
- seccomp=unconfined
volumes:
- ./data:/data
- /usr/lib/node_modules
environment:
- NODE_PATH=/usr/lib/node_modules
working_dir: /data
restart: unless-stopped