Initial commit.
This commit is contained in:
18
docker-compose.yml
Normal file
18
docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
services:
|
||||
database:
|
||||
container_name: "virtual-threads-test-db"
|
||||
image: "postgres:17"
|
||||
ports:
|
||||
- "51000:5432"
|
||||
networks:
|
||||
- "virtual-threads-test-network"
|
||||
environment:
|
||||
POSTGRES_DB: virtual_threads_test_db
|
||||
POSTGRES_USER: virtual_threads_test_user
|
||||
POSTGRES_PASSWORD: password
|
||||
PGDATA: /var/lib/postgresql/data/pgdata
|
||||
volumes:
|
||||
- "./local/postgresql/pgdata:/var/lib/postgresql/data/pgdata"
|
||||
|
||||
networks:
|
||||
virtual-threads-test-network:
|
||||
Reference in New Issue
Block a user