Add datastack
gitea, dbeaver, and databasus using remote postgres instance
This commit is contained in:
45
datastack
Normal file
45
datastack
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
networks:
|
||||||
|
gitea:
|
||||||
|
external: false
|
||||||
|
|
||||||
|
services:
|
||||||
|
databasus:
|
||||||
|
container_name: databasus
|
||||||
|
image: databasus/databasus:latest
|
||||||
|
ports:
|
||||||
|
- "4005:4005"
|
||||||
|
volumes:
|
||||||
|
- ./databasus:/databasus-data
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
cloudbeaver:
|
||||||
|
image: dbeaver/cloudbeaver:latest
|
||||||
|
container_name: cloudbeaver
|
||||||
|
ports:
|
||||||
|
- "8080:8978"
|
||||||
|
volumes:
|
||||||
|
- /opt/cloudbeaver/workspace
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
gitea:
|
||||||
|
image: docker.gitea.com/gitea:latest
|
||||||
|
container_name: gitea
|
||||||
|
environment:
|
||||||
|
- USER_UID=1001
|
||||||
|
- USER_GID=1001
|
||||||
|
- GITEA__database__DB_TYPE=postgres
|
||||||
|
- GITEA__database__HOST=10.1.21.150:5432
|
||||||
|
- GITEA__database__NAME=gitea
|
||||||
|
- GITEA__database__USER=postgres
|
||||||
|
- GITEA__database__PASSWD=Rem1ember!
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- gitea
|
||||||
|
volumes:
|
||||||
|
- /mnt/gitea:/homenas_nfs
|
||||||
|
- ./gitea:/data
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
- "222:22"
|
||||||
Reference in New Issue
Block a user