stack.yml 363 B

1234567891011121314151617181920
  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:5.7
  15. restart: always
  16. environment:
  17. MYSQL_ROOT_PASSWORD: example