You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
375 B
22 lines
375 B
1 year ago
|
== opengauss
|
||
|
=== docker compose
|
||
|
[source,bash]
|
||
|
----
|
||
|
version: '3'
|
||
|
services:
|
||
|
opengauss:
|
||
|
privileged: true
|
||
|
image: enmotech/opengauss:latest
|
||
|
container_name: opengauss
|
||
|
environment:
|
||
|
- GS_PASSWORD=opengauss
|
||
|
- TZ=Asia/Shanghai
|
||
|
ports:
|
||
|
- "5432:5432"
|
||
|
ulimits:
|
||
|
nproc: 65535
|
||
|
nofile:
|
||
|
soft: 20000
|
||
|
hard: 40000
|
||
|
----
|