Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit478c1d4

Browse files
Create Dockerfile
1 parent746c834 commit478c1d4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

‎Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Start from postgres 17.5 as a base image
2+
FROM postgres:17.5
3+
4+
# Copy init script which runs on first startup
5+
COPY ssl-config.sh /docker-entrypoint-initdb.d/ssl-config.sh
6+
7+
# Copy the entrypoint script to the image
8+
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
9+
10+
# Make the entypoint script executable
11+
RUN chmod +x /usr/local/bin/entrypoint.sh
12+
13+
# Set the entrypoint
14+
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp