fix(playwright): use playwright docker image due to runtime error

This commit is contained in:
Amruth Pillai
2022-03-07 23:09:14 +01:00
parent 28ba2b1b8f
commit 2696a54d17
3 changed files with 28 additions and 11 deletions

23
docker-compose.prod.yml Normal file
View File

@ -0,0 +1,23 @@
version: '3'
services:
server:
image: amruthpillai/reactive-resume:server-latest
container_name: server
env_file: .env
ports:
- 3100:3100
depends_on:
- postgres
client:
image: amruthpillai/reactive-resume:client-latest
container_name: client
env_file: .env
ports:
- 3000:3000
depends_on:
- server
volumes:
pgdata: