diff --git a/Bookstack/.env b/Bookstack/.env new file mode 100644 index 0000000..69da666 --- /dev/null +++ b/Bookstack/.env @@ -0,0 +1,4 @@ +DB_USER= +DB_PASS= +DB_ROOTPASS= +APP_URL=http://bookstack.example.com \ No newline at end of file diff --git a/Bookstack/docker-compose.yml b/Bookstack/docker-compose.yml new file mode 100644 index 0000000..3833e42 --- /dev/null +++ b/Bookstack/docker-compose.yml @@ -0,0 +1,34 @@ +services: + bookstack: + image: lscr.io/linuxserver/bookstack:latest + container_name: bookstack + env_file: .env + environment: + - PUID=1000 + - PGID=1000 + - APP_URL=$APP_URL + - DB_HOST=db + - DB_PORT=3306 + - DB_USER=$DB_USER + - DB_PASS=$DB_PASS + - DB_DATABASE=bookstackapp + volumes: + - ./data:/config + restart: unless-stopped + depends_on: + - db + ports: + - "80:80" + + db: + image: "mysql:latest" + container_name: bookstack-db + env_file: .env + environment: + - MYSQL_ROOT_PASSWORD=$DB_ROOTPASS + - MYSQL_DATABASE=bookstackapp + - MYSQL_USER=$DB_USER + - MYSQL_PASSWORD=$DB_PASS + volumes: + - ./db:/var/lib/mysql + restart: unless-stopped \ No newline at end of file diff --git a/Pterodactyl/docker-compose.yml b/Pterodactyl/docker-compose.yml new file mode 100644 index 0000000..3941337 --- /dev/null +++ b/Pterodactyl/docker-compose.yml @@ -0,0 +1,74 @@ +x-common: + database: + &db-environment + # Do not remove the "&db-password" from the end of the line below, it is important + # for Panel functionality. + MYSQL_PASSWORD: &db-password "CHANGE_ME" + MYSQL_ROOT_PASSWORD: "CHANGE_ME_TOO" + panel: + &panel-environment + # This URL should be the URL that your reverse proxy routes to the panel server + APP_URL: "https://pterodactyl.example.com" + # A list of valid timezones can be found here: http://php.net/manual/en/timezones.php + APP_TIMEZONE: "UTC" + APP_SERVICE_AUTHOR: "noreply@example.com" + TRUSTED_PROXIES: "*" # Set this to your proxy IP + # Uncomment the line below and set to a non-empty value if you want to use Let's Encrypt + # to generate an SSL certificate for the Panel. + # LE_EMAIL: "" + mail: + &mail-environment + MAIL_FROM: "noreply@example.com" + MAIL_DRIVER: "smtp" + MAIL_HOST: "mail" + MAIL_PORT: "1025" + MAIL_USERNAME: "" + MAIL_PASSWORD: "" + MAIL_ENCRYPTION: "true" + +# +# ------------------------------------------------------------------------------------------ +# DANGER ZONE BELOW +# +# The remainder of this file likely does not need to be changed. Please only make modifications +# below if you understand what you are doing. +# +services: + database: + image: mariadb:10.5 + restart: always + command: --default-authentication-plugin=mysql_native_password + volumes: + - "/srv/pterodactyl/database:/var/lib/mysql" + environment: + <<: *db-environment + MYSQL_DATABASE: "panel" + MYSQL_USER: "pterodactyl" + cache: + image: redis:alpine + restart: always + panel: + image: ghcr.io/pterodactyl/panel:latest + restart: always + ports: + - "80:80" +# - "443:443" + links: + - database + - cache + volumes: + - "/srv/pterodactyl/var/:/app/var/" + - "/srv/pterodactyl/nginx/:/etc/nginx/http.d/" + - "/srv/pterodactyl/certs/:/etc/letsencrypt/" + - "/srv/pterodactyl/logs/:/app/storage/logs" + environment: + <<: [*panel-environment, *mail-environment] + DB_PASSWORD: *db-password + APP_ENV: "production" + APP_ENVIRONMENT_ONLY: "false" + CACHE_DRIVER: "redis" + SESSION_DRIVER: "redis" + QUEUE_DRIVER: "redis" + REDIS_HOST: "cache" + DB_HOST: "database" + DB_PORT: "3306"