mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 09:02:22 +08:00
6 lines
190 B
Docker
6 lines
190 B
Docker
ARG postgres_version=17.4-alpine3.21
|
|
FROM postgres:${postgres_version}
|
|
ADD setup.sql /docker-entrypoint-initdb.d
|
|
RUN chown -R postgres:postgres /docker-entrypoint-initdb.d/
|
|
CMD ["postgres"]
|