Added initial compose file
This commit is contained in:
commit
1a1c204ca5
19
testing.yml
Normal file
19
testing.yml
Normal file
@ -0,0 +1,19 @@
|
||||
version: '3.3'
|
||||
|
||||
services:
|
||||
wordpress:
|
||||
image: wordpress:latest
|
||||
volumes:
|
||||
- webapptest:/var/www/html
|
||||
ports:
|
||||
- "8000:80"
|
||||
restart: always
|
||||
environment:
|
||||
- WORDPRESS_DB_HOST=${WORDPRESS_DB_HOST}
|
||||
- WORDPRESS_DB_USER=${WORDPRESS_DB_USER}
|
||||
- WORDPRESS_DB_PASSWORD=${WORDPRESS_DB_PASSWORD}
|
||||
- WORDPRESS_DB_NAME=${WORDPRESS_DB_NAME}
|
||||
|
||||
volumes:
|
||||
webapptest:
|
||||
driver: local
|
Loading…
Reference in New Issue
Block a user