-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
56 lines (53 loc) · 1.38 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: '3.9'
services:
gill:
build:
dockerfile: Dockerfile
context: ./
image: "gillpub/gill:latest-amd"
depends_on:
- postgres
restart: unless-stopped
container_name: gill
environment:
GILL_DB_NAME: gill
GILL_DB_HOST: postgres
GILL_DB_PORT: 5432
GILL_DB_USER: postgres
GILL_DB_PASSWORD: postgres
GILL_GILL_ASSETS: /opt/gill/assets
GILL_OAUTH_CLIENT_ID: gill
GILL_OAUTH_CLIENT_SECRET: 8Nup063EeIOYzSsEyVZkbo67sUpIX0Bc
GILL_OAUTH_PROVIDER: https://keycloak.cloud.hoohoot.org
GILL_OAUTH_USER_INFO_URL: /auth/realms/hoohoot/protocol/openid-connect/userinfo
GILL_OAUTH_TOKEN_URL: /auth/realms/hoohoot/protocol/openid-connect/token
GILL_OAUTH_AUTH_URL: /auth/realms/hoohoot/protocol/openid-connect/auth
GILL_DOMAIN: bore.pub:45136
GILL_PORT: 3000
GILL_DEBUG: false
env_file:
- docker/sshd.env
ports:
- "3000:3000"
- "2222:22"
volumes:
- gill_data:/home/git
networks:
- gill
postgres:
image: docker.io/postgres:13.2
restart: unless-stopped
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
POSTGRES_DB: "gill"
ports:
- "5432:5432"
volumes:
- ./docker/init.sql:/docker-entrypoint-initdb.d/init.sql
networks:
- gill
volumes:
gill_data:
networks:
gill: