compose.yaml 372 B

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