Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

I am running WordPress with Nginx in Docker using Docker Compose and I want to copy over a custom theme. Right now in my docker-compose.yml file I have,
wordpress:
depends_on:
- db
image: wordpress:5.1.1-fpm-alpine
container_name: wordpress
restart: unless-stopped
env_file: .env
environment:
- WORDPRESS_DB_HOST=MYHOST
- WORDPRESS_DB_USER=$MYSQL_USER
- WORDPRESS_DB_PASSWORD=$MYSQL_PASSWORD
- WORDPRESS_DB_NAME=MYDB
volumes:
- ./plugins/advanced-custom-fields:/var/www/html/wp-content/plugins/advanced-custom-fields
- ./themes/mytheme:/var/www/html/wp-content/themes/mytheme
It kind of works. The theme copies over some of the php files from the theme folder but it doesn't copy over any of the stylesheets or any of the images in the /img/ folder.
Any ideas?
Thanks in advance!
d1dd3d9538cc4d06b53e6d1d338d3f
50ff4e4b3c6c4999a12403b1ecda95
a6309a057c3f4cb38fb2e7feb67236
72e571841e7f4a6881090a2f3e93c0
57a72a98162f46a5a5cd04d9b
Thomas Brocken
11575c6d695643cdb40ad47d0f1aea
tez.saad
keneucker
keneucker
max johnson
max johnson