forked from LaconicNetwork/kompose
* chore: unify e2e tests to compose yaml Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> * chore: update tests_new.sh to reflect changes of files names Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> --------- Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com>
25 lines
605 B
YAML
25 lines
605 B
YAML
web:
|
|
image: wordpress:4.5
|
|
ports:
|
|
- '80'
|
|
environment:
|
|
WORDPRESS_AUTH_KEY: changeme
|
|
WORDPRESS_SECURE_AUTH_KEY: changeme
|
|
WORDPRESS_LOGGED_IN_KEY: changeme
|
|
WORDPRESS_NONCE_KEY: changeme
|
|
WORDPRESS_AUTH_SALT: changeme
|
|
WORDPRESS_SECURE_AUTH_SALT: changeme
|
|
WORDPRESS_LOGGED_IN_SALT: changeme
|
|
WORDPRESS_NONCE_SALT: changeme
|
|
WORDPRESS_NONCE_AA: changeme
|
|
restart: always
|
|
links:
|
|
- 'db:mysql'
|
|
db:
|
|
image: mysql:5.7
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: password
|
|
restart: always
|
|
labels:
|
|
project.logs: /var/log/mysql
|
|
kompose.controller.type: daemonset |