This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-05-28 22:45:56 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
2020-06-08 09:21:14 +00:00
|
|
|
chrome:
|
2020-06-19 16:19:20 +00:00
|
|
|
image: selenium/standalone-chrome-debug:3.141.59-20200525
|
2020-06-08 09:21:14 +00:00
|
|
|
volumes:
|
|
|
|
- /dev/shm:/dev/shm
|
2020-06-19 16:19:20 +00:00
|
|
|
network_mode: host
|
2020-06-08 09:21:14 +00:00
|
|
|
|
2020-06-07 17:30:56 +00:00
|
|
|
postgresql:
|
|
|
|
image: postgres:11
|
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
POSTGRES_DB: passbook
|
2020-06-19 16:19:20 +00:00
|
|
|
network_mode: host
|
2020-06-07 17:30:56 +00:00
|
|
|
redis:
|
|
|
|
image: redis
|
|
|
|
restart: always
|
2020-06-19 16:19:20 +00:00
|
|
|
network_mode: host
|