We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac296c1 commit 625ddffCopy full SHA for 625ddff
docker-compose.yml
@@ -35,8 +35,9 @@ services:
35
- "5431:5432"
36
env_file: *env_file
37
volumes:
38
- - ./docker/db/seed.sql:/docker-entrypoint-initdb.d/seed.sql
39
- - ./docker/db/wallet-seed.sql:/docker-entrypoint-initdb.d/wallet-seed.sql
+ # the prefix makes sure the seeds are executed in the correct order instead of alphabetical by default
+ - ./docker/db/000_seed.sql:/docker-entrypoint-initdb.d/000_seed.sql
40
+ - ./docker/db/001_wallet-seed.sql:/docker-entrypoint-initdb.d/001_wallet-seed.sql
41
- db:/var/lib/postgresql/data
42
labels:
43
CONNECT: "localhost:5431"
docker/db/seed.sql renamed to docker/db/000_seed.sql
docker/db/wallet-seed.sql renamed to docker/db/001_wallet-seed.sql
0 commit comments