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.
authentik/e2e/docker-compose.yml

60 lines
1.1 KiB
YAML
Raw Normal View History

2020-05-28 22:45:56 +00:00
version: '3.7'
services:
2020-06-08 09:21:14 +00:00
# hub:
# image: dosel/zalenium
# command: start
# ports:
# - 4444:4444
# environment:
# PULL_SELENIUM_IMAGE: 'true'
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# - /tmp/videos:/home/seluser/videos
# privileged: true
chrome:
image: selenium/node-chrome:3.14.0-gallium
volumes:
- /dev/shm:/dev/shm
depends_on:
- hub
environment:
HUB_HOST: hub
2020-06-08 09:23:18 +00:00
networks:
- e2e
2020-06-08 09:21:14 +00:00
2020-05-28 22:45:56 +00:00
hub:
2020-06-08 09:21:14 +00:00
image: selenium/hub:3.14.0-gallium
2020-05-28 22:45:56 +00:00
ports:
2020-06-08 09:21:14 +00:00
- "4444:4444"
2020-06-08 09:23:18 +00:00
networks:
- e2e
2020-06-08 09:21:14 +00:00
postgresql:
image: postgres:11
restart: always
environment:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_DB: passbook
2020-06-08 09:23:18 +00:00
networks:
- e2e
redis:
image: redis
restart: always
2020-06-08 09:23:18 +00:00
networks:
- e2e
passbook:
image: beryju/passbook
command: /bin/bash -c "sleep infinity"
volumes:
- ../:/testing
environment:
PASSBOOK_ENV: docker
user: root
working_dir: /testing
2020-06-08 09:23:18 +00:00
networks:
- e2e
networks:
e2e: