Basic server app with WS connection.
Some checks failed
Linting and tests / Linting (push) Failing after 37s
Some checks failed
Linting and tests / Linting (push) Failing after 37s
This commit is contained in:
25
server/localdevzone/postgresql/docker-compose.yaml
Normal file
25
server/localdevzone/postgresql/docker-compose.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
services:
|
||||
postgresql:
|
||||
container_name: bunkerd-postgresql
|
||||
image: postgres:17.6-alpine
|
||||
environment:
|
||||
- POSTGRES_USER=postgres
|
||||
- POSTGRES_PASSWORD=postgres
|
||||
- POSTGRES_DB=bunkerd
|
||||
- PGDATA=/var/lib/postgresql/data
|
||||
ports:
|
||||
- "127.0.0.1:53500:5432"
|
||||
volumes:
|
||||
- "bunkerd_localdevzone_postgresql:/var/lib/postgresql/data"
|
||||
networks:
|
||||
bunkerd:
|
||||
ipv4_address: 247.247.0.4
|
||||
|
||||
volumes:
|
||||
bunkerd_localdevzone_postgresql:
|
||||
external: false
|
||||
|
||||
networks:
|
||||
bunkerd:
|
||||
external: true
|
Reference in New Issue
Block a user