File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
- # seq uuid: https://github.com/tvondra/sequential-uuids
2
1
# ref: https://github.com/docker-library/postgres/issues/340
3
2
FROM postgres:13 AS extension_builder
4
3
@@ -21,8 +20,8 @@ FROM postgres:13
21
20
# if use alpine: the paths are different!
22
21
23
22
# 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
26
25
27
26
# after in sql:
28
27
# CREATE EXTENSION sequential_uuids;
Original file line number Diff line number Diff line change 1
1
docker_postgres_with_seq_uuid
2
+
3
+ add the following extension to postgres.
4
+
5
+ https://github.com/tvondra/sequential-uuids
You can’t perform that action at this time.
0 commit comments