| 123456789101112131415161718192021 |
- version: '3.1'
- services:
- yourls:
- image: yourls
- restart: always
- ports:
- - 8080:80
- environment:
- YOURLS_DB_PASS: example
- YOURLS_SITE: https://example.com
- YOURLS_USER: example_username
- YOURLS_PASS: example_password
- mysql:
- image: mysql
- restart: always
- environment:
- MYSQL_ROOT_PASSWORD: example
- MYSQL_DATABASE: yourls
|