mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
32 lines
667 B
YAML
32 lines
667 B
YAML
version: "3"
|
|
services:
|
|
pomerium:
|
|
image: pomerium/pomerium:master
|
|
volumes:
|
|
- ./_wildcard.localhost.pomerium.io.pem:/pomerium/cert.pem:ro
|
|
- ./_wildcard.localhost.pomerium.io-key.pem:/pomerium/key.pem:ro
|
|
- ./config.yaml:/pomerium/config.yaml:ro
|
|
ports:
|
|
- 443:443
|
|
|
|
redis:
|
|
image: redis:latest
|
|
expose:
|
|
- 6379
|
|
|
|
ssh:
|
|
image: linuxserver/openssh-server:latest
|
|
expose:
|
|
- 2222
|
|
environment:
|
|
PASSWORD_ACCESS: "true"
|
|
USER_PASSWORD: supersecret
|
|
USER_NAME: myuser
|
|
|
|
pgsql:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: supersecret
|
|
expose:
|
|
- 5432
|