
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
A simple docker container that runs PostGIS backups. It is intended to be used primarily with our https://github.com/kartoza/docker-postgis docker image. By default it will create a backup once per night (at 23h00)in a nicely ordered directory by year / month.
There are various ways to get the image onto your system:
The preferred way (but using most bandwidth for the initial image) is to get our docker trusted build like this:
docker pull kartoza/pg-backup:latest docker pull kartoza/pg-backup:9.6 docker pull kartoza/pg-backup:9.5 docker pull kartoza/pg-backup:9.4 docker pull kartoza/pg-backup:9.3
We highly suggest that you use a tagged image (9.6 currently available) as latest may change and may not successfully back up your database. Use the same or greater version of postgis as the database you are backing up.
To build the image yourself without apt-cacher (also consumes more bandwidth since deb packages need to be refetched each time you build) do:
docker build -t kartoza/pg-backups .
If you do not wish to do a local checkout first then build directly from github.
git clone git://github.com/kartoza/docker-postgis
To create a running container do:
docker run --name="backups"\ --hostname="pg-backups" \ --link=watchkeeper_db_1:db \ -v backups:/backups \ -i -d kartoza/pg-backup:9.4
In this example I used a volume into which the actual backups will be stored.
You can also use the following environment variables to pass a user name and password etc for the database connection.
Note: These variable names were changed when updating to support our PG version 10 image so that the names used here are consistent with those used in the postgis v10 image.
Example usage:
docker run -e POSTGRES_USER=bob -e POSTGRES_PASS=secret -link db -i -d kartoza/pg-backup
One other environment variable you may like to set is a prefix for the database dumps.
Example usage:
docker run -e DUMPPREFIX=foo -link db -i -d kartoza/pg-backup
Here is a more typical example using docker-composer (formerly known as fig):
For docker-compose.yml:
db: image: kartoza/postgis:9.4-2.1 volumes: - ./pg/postgres_data:/var/lib/postgresql - ./pg/setup_data:/home/setup environment: - USERNAME=docker - PASS=docker dbbackup: image: kartoza/pg-backup:9.4 hostname: pg-backups volumes: - ./backups:/backups links: - db:db environment: - DUMPPREFIX=PG_YOURSITE # These are all defaults anyway, but setting explicitly in # case we ever want to ever use different credentials - POSTGRES_USER=docker - POSTGRES_PASS=docker - POSTGRES_PORT=5432 - POSTGRES_HOST=db - POSTGRES_DBNAME=gis
Then run using:
docker-compose up -d dbbackup
The default backup archive generated will be stored in this directory (inside the container):
/backups/$(date +%Y)/$(date +%B)/${DUMPPREFIX}_${DB}.$(date +%d-%B-%Y).dmp
As a concrete example, with DUMPPREFIX=PG and if your postgis has DB name gis.
The backup archive would be something like:
/backups/2019/February/PG_gis.13-February-2019.dmp
If you specify ARCHIVE_FILENAME instead (default value is e***y). The
filename will be fixed according to this prefix.
Let's assume ARCHIVE_FILENAME=/backups/latest
The backup archive would be something like
/backups/latest.gis.dmp
A simple restore script is provided. You need to specify some environment variables first:
The restore script will delete the TARGET_DB, so make sure you know what you are doing.
Then it will create a new one and restore the content from TARGET_ARCHIVE
If you specify these environment variable using docker-compose.yml file, then you can execute a restore process like this:
docker-compose exec dbbackup /restore.sh
Tim Sutton (***) April 2015
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务