mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
16 lines
324 B
YAML
16 lines
324 B
YAML
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
|