Created
June 5, 2024 19:57
-
-
Save tyrm/0f67f9ae82f9f0d9f65b3a0bf4fd9016 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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