first
This commit is contained in:
commit
93d4cf863f
29 changed files with 1143 additions and 0 deletions
18
docker/local/docker-compose.yml
Normal file
18
docker/local/docker-compose.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
version: '3'
|
||||
|
||||
volumes:
|
||||
lf8_starter_postgres_data:
|
||||
driver: local
|
||||
|
||||
services:
|
||||
postgres_for_lf8_starter:
|
||||
container_name: lf8_starter_postgres_container
|
||||
image: postgres:16.4
|
||||
volumes:
|
||||
- lf8_starter_postgres_data:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: lf8_starter_db
|
||||
POSTGRES_USER: lf8_starter
|
||||
POSTGRES_PASSWORD: secret
|
||||
ports:
|
||||
- "5432:5432"
|
Reference in a new issue