Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ refactor(pterodactyl-wings): simplify mount paths #2530

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions Apps/pterodactyl-wings/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,27 +47,15 @@ services:
# Mount the SSL certificates in read-only mode
- "/etc/ssl/certs:/etc/ssl/certs:ro"

# Mount a temporary directory for Pterodactyl
- "/DATA/AppData/$AppID/tmp:/tmp/pterodactyl/"

# Mount a temporary directory for Pterodactyl
- "/tmp/pterodactyl:/tmp/pterodactyl/"

# Mount the configuration directory for Pterodactyl
- "/DATA/AppData/$AppID/etc:/etc/pterodactyl/"

# Mount the configuration directory for Pterodactyl
- "/etc/pterodactyl:/etc/pterodactyl/"

# Mount the logs directory for Pterodactyl
- "/DATA/AppData/$AppID/logs:/var/log/pterodactyl/"

# Mount the logs directory for Pterodactyl
- "/var/log/pterodactyl:/var/log/pterodactyl/"

# Mount the library directory for Pterodactyl
- "/DATA/AppData/$AppID/lib:/var/lib/pterodactyl/"

# Mount the library directory for Pterodactyl
- "/var/lib/pterodactyl:/var/lib/pterodactyl/"

Expand All @@ -85,7 +73,6 @@ services:
- container: WINGS_USERNAME
description:
en_us: Username for the Wings process

ports:
- container: "8080"
description:
Expand Down Expand Up @@ -148,7 +135,7 @@ x-casaos:
Copy the Configuration: After creating the node, the panel will provide a configuration file. You need to copy the content of this configuration and place it in:

```
/DATA/AppData/big-bear-pterodactyl-wings/etc/config.yml
/etc/pterodactyl/config.yml
```

Tip: Use the CasaOS files app for an easy file management experience.
Expand Down
Loading