Skip to content

Commit 1381db6

Browse files
committed
fix
1 parent f642a78 commit 1381db6

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# seq uuid: https://github.com/tvondra/sequential-uuids
21
# ref: https://github.com/docker-library/postgres/issues/340
32
FROM postgres:13 AS extension_builder
43

@@ -21,8 +20,8 @@ FROM postgres:13
2120
#if use alpine: the paths are different!
2221

2322
# run find / -name 'sequential_uuids*' to find newly compiled files and copy to next stage
24-
COPY --from=extension_builder /usr/lib/postgresql/12/lib /usr/lib/postgresql/13/lib
25-
COPY --from=extension_builder /usr/share/postgresql/12/extension /usr/share/postgresql/13/extension
23+
COPY --from=extension_builder /usr/lib/postgresql/13/lib /usr/lib/postgresql/13/lib
24+
COPY --from=extension_builder /usr/share/postgresql/13/extension /usr/share/postgresql/13/extension
2625

2726
# after in sql:
2827
# CREATE EXTENSION sequential_uuids;

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
docker_postgres_with_seq_uuid
2+
3+
add the following extension to postgres.
4+
5+
https://github.com/tvondra/sequential-uuids

0 commit comments

Comments
 (0)