actually commit mistakenly uncommitted docker-compose files
This commit is contained in:
parent
4ae2e79d02
commit
1bbf1dd51e
13
examples/class-registry/pgsql.docker-compose.yml
Normal file
13
examples/class-registry/pgsql.docker-compose.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
image: postgres:14
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "5432:5432"
|
||||||
|
environment:
|
||||||
|
POSTGRES_PASSWORD: f00b@r!
|
||||||
|
volumes:
|
||||||
|
- ./create_db.sql:/docker-entrypoint-initdb.d/init_class_registry.sql
|
13
examples/todomvc/pgsql.docker-compose.yml
Normal file
13
examples/todomvc/pgsql.docker-compose.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
image: postgres:14
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "5432:5432"
|
||||||
|
environment:
|
||||||
|
POSTGRES_PASSWORD: f00b@r!
|
||||||
|
volumes:
|
||||||
|
- ./create_db.sql:/docker-entrypoint-initdb.d/init_todomvc.sql
|
Loading…
Reference in a new issue