mirror of https://code.onedev.io/onedev/server
36 lines
937 B
YAML
36 lines
937 B
YAML
services:
|
|
onedev:
|
|
image: 1dev/server
|
|
volumes:
|
|
- ./onedev:/opt/onedev
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: always
|
|
ports:
|
|
- "6610:6610"
|
|
- "6611:6611"
|
|
environment:
|
|
### This should be the same as POSTGRES_PASSWORD env below
|
|
hibernate_connection_password: "changeit"
|
|
|
|
hibernate_dialect: io.onedev.server.persistence.PostgreSQLDialect
|
|
hibernate_connection_driver_class: org.postgresql.Driver
|
|
hibernate_connection_url: jdbc:postgresql://postgres:5432/onedev
|
|
hibernate_connection_username: postgres
|
|
tty: true
|
|
depends_on:
|
|
- "postgres"
|
|
|
|
postgres:
|
|
image: postgres:14-alpine3.15
|
|
restart: always
|
|
environment:
|
|
### Change this
|
|
POSTGRES_PASSWORD: "changeit"
|
|
|
|
POSTGRES_USER: "postgres"
|
|
POSTGRES_DB: "onedev"
|
|
expose:
|
|
- "5432"
|
|
volumes:
|
|
- ./onedev/site/postgres:/var/lib/postgresql/data
|