Skip to content

Instantly share code, notes, and snippets.

@tyrm
Created June 5, 2024 19:57
Show Gist options
  • Save tyrm/0f67f9ae82f9f0d9f65b3a0bf4fd9016 to your computer and use it in GitHub Desktop.
Save tyrm/0f67f9ae82f9f0d9f65b3a0bf4fd9016 to your computer and use it in GitHub Desktop.
---
version: '3.7'
services:
wordpress:
image: wordpress:6
ports:
- 8846:80/tcp
env_file:
- /volume/docker/pzg-wordpress/env
volumes:
- /volume/docker/pzg-wordpress/html:/var/www/html
- /volume/docker/pzg-wordpress/uploads.ini:/usr/local/etc/php/conf.d/uploads.ini:ro
restart: always
postgres:
image: postgres:15
volumes:
- /volume/docker/pzg-wordpress/pgdata:/var/lib/postgresql/data:rw
ports:
- 45433:5432/tcp
env_file:
- /volume/docker/pzg-wordpress/env.postgres
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment