stack.yml 388 B

123456789101112131415161718192021
  1. version: '3.1'
  2. services:
  3. yourls:
  4. image: yourls
  5. restart: always
  6. ports:
  7. - 8080:80
  8. environment:
  9. YOURLS_DB_PASS: example
  10. YOURLS_SITE: https://example.com
  11. YOURLS_USER: example_username
  12. YOURLS_PASS: example_password
  13. mysql:
  14. image: mysql
  15. restart: always
  16. environment:
  17. MYSQL_ROOT_PASSWORD: example
  18. MYSQL_DATABASE: yourls