compose.yaml 454 B

12345678910111213141516171819202122
  1. name: yourls
  2. services:
  3. yourls:
  4. image: yourls
  5. restart: always
  6. depends_on:
  7. - mysql
  8. ports:
  9. - 8080:8080
  10. environment:
  11. YOURLS_DB_PASS: example
  12. YOURLS_SITE: https://example.com
  13. YOURLS_USER: example_username
  14. YOURLS_PASS: example_password
  15. mysql:
  16. image: mysql
  17. restart: always
  18. environment:
  19. MYSQL_ROOT_PASSWORD: example
  20. MYSQL_DATABASE: yourls
  21. volumes:
  22. - db:/var/lib/mysql