Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wordpress-docker-compose
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thorsten Sichtermann
wordpress-docker-compose
Commits
52beafab
Commit
52beafab
authored
7 years ago
by
Harald Nezbeda
Browse files
Options
Downloads
Patches
Plain Diff
Add dockerfile to enable self-signed certificate
parent
b64ed4a4
Branches
https
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
docker-compose.yml
+6
-2
6 additions, 2 deletions
docker-compose.yml
docker/Wordpress
+13
-0
13 additions, 0 deletions
docker/Wordpress
docker/config/php.conf.uploads.ini
+0
-0
0 additions, 0 deletions
docker/config/php.conf.uploads.ini
with
19 additions
and
2 deletions
docker-compose.yml
+
6
−
2
View file @
52beafab
version
:
'
3'
services
:
wp
:
image
:
wordpress:latest
# https://hub.docker.com/_/wordpress/
build
:
context
:
./docker
dockerfile
:
Wordpress
ports
:
-
127.0.0.1:80:80
# change ip if required
-
127.0.0.1:443:443
# change ip if required
volumes
:
-
./config/php.conf.uploads.ini:/usr/local/etc/php/conf.d/uploads.ini
-
./
docker/
config/php.conf.uploads.ini:/usr/local/etc/php/conf.d/uploads.ini
-
./wp-app:/var/www/html
# Full wordpress project
#- ./plugin-name/trunk/:/var/www/html/wp-content/plugins/plugin-name # Plugin development
#- ./theme-name/trunk/:/var/www/html/wp-content/themes/theme-name # Theme development
...
...
This diff is collapsed.
Click to expand it.
docker/Wordpress
0 → 100644
+
13
−
0
View file @
52beafab
FROM wordpress:latest
# https://hub.docker.com/_/wordpress/
MAINTAINER Harald Nezbeda <hn@nezhar.com>
RUN apt-get update && \
apt-get install -y --no-install-recommends ssl-cert && \
rm -r /var/lib/apt/lists/* && \
a2enmod ssl && \
a2ensite default-ssl
EXPOSE 80
EXPOSE 443
This diff is collapsed.
Click to expand it.
config/php.conf.uploads.ini
→
docker/
config/php.conf.uploads.ini
+
0
−
0
View file @
52beafab
File moved
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment