We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d08f150 commit a89043fCopy full SHA for a89043f
1 file changed
docs/migrate.md
@@ -103,10 +103,12 @@ services:
103
nginx:
104
image: nginx:1
105
volumes:
106
- - ./nginx.conf:/etc/nginx/conf.d/default.conf
+ - ./config:/etc/nginx/conf.d # mount config/default.conf into the container
107
- .:/var/www/app
108
ports:
109
- "80:80"
110
+ - "443:443"
111
+ - "443:443/udp"
112
113
php:
114
image: php:8.5-fpm
@@ -122,7 +124,7 @@ services:
122
124
image: dunglas/frankenphp:1-php8.5
123
125
126
- - ./Caddyfile:/etc/frankenphp/Caddyfile
127
+ - ./config:/etc/frankenphp # to mount config/Caddyfile into the container
128
- caddy_data:/data
129
- caddy_config:/config
130
0 commit comments