This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
nginxproxy [2021/08/25 15:57] – alexk7110 | nginxproxy [2021/08/28 10:37] (current) – [docker-compose.yml] alexk7110 | ||
---|---|---|---|
Line 7: | Line 7: | ||
You can always setup wireguard on the server and be done with it but the above solution is way faster for some initial setups. | You can always setup wireguard on the server and be done with it but the above solution is way faster for some initial setups. | ||
+ | |||
+ | ===== Default credentials ===== | ||
+ | Default Admin User: | ||
+ | |||
+ | Email: | ||
+ | |||
+ | Password: '' | ||
+ | ---- | ||
+ | ===== docker-compose.yml ===== | ||
+ | <code yaml docker-compose.yml> | ||
+ | --- | ||
+ | services: | ||
+ | app: | ||
+ | image: ' | ||
+ | restart: unless-stopped | ||
+ | ports: | ||
+ | - ' | ||
+ | - ' | ||
+ | - ' | ||
+ | environment: | ||
+ | DB_MYSQL_HOST: | ||
+ | DB_MYSQL_PORT: | ||
+ | DB_MYSQL_USER: | ||
+ | DB_MYSQL_PASSWORD: | ||
+ | DB_MYSQL_NAME: | ||
+ | volumes: | ||
+ | - ./ | ||
+ | - ./ | ||
+ | db: | ||
+ | image: ' | ||
+ | restart: unless-stopped | ||
+ | environment: | ||
+ | MYSQL_ROOT_PASSWORD: | ||
+ | MYSQL_DATABASE: | ||
+ | MYSQL_USER: ' | ||
+ | MYSQL_PASSWORD: | ||
+ | volumes: | ||
+ | - ./ | ||
+ | </ |