Delete non-functional logs directory

This will no longer work when the containers run as a non-root user, and they are unnecessary when the logs can be taken directly from the container.
This commit is contained in:
Matthew Lopez 2024-07-22 22:46:08 -04:00
parent c63162eb28
commit 1f3a535ca5
No known key found for this signature in database
GPG Key ID: 302A6EE3D63B7E0E
13 changed files with 0 additions and 42 deletions

3
.gitignore vendored
View File

@ -5,9 +5,6 @@
# Important secrets
/secrets.txt
# Log files
/logs/
# Mitmproxy CA certificate
/console-files/mitmproxy-ca-cert.pem

View File

@ -89,9 +89,6 @@ services:
source: ./config/nginx
target: /etc/nginx/conf.d/
read_only: true
- type: bind
source: ./logs/nginx/
target: /var/log/nginx/
networks:
default:
internal:
@ -254,10 +251,6 @@ services:
ports:
# Node.js debugger
- 127.0.0.1:9229:9229
volumes:
- type: bind
source: ./logs/account/
target: /app/logs/
networks:
internal:
dns: 172.20.0.200
@ -275,9 +268,6 @@ services:
# Node.js debugger
- 127.0.0.1:9230:9230
volumes:
- type: bind
source: ./logs/website/
target: /app/logs/
- type: bind
source: ./config/website-config.json
target: /home/node/app/config.json
@ -299,10 +289,6 @@ services:
- 6000:6000/udp
# Secure server
- 6001:6001/udp
volumes:
- type: bind
source: ./logs/friends/
target: /build/log/
networks:
internal:
dns: 172.20.0.200
@ -321,9 +307,6 @@ services:
# Node.js debugger
- 127.0.0.1:9231:9231
volumes:
- type: bind
source: ./logs/miiverse-api/
target: /app/logs/
- type: bind
source: ./config/mongoose-connect-options.json
target: /home/node/app/mongoose-connect-options.json
@ -347,9 +330,6 @@ services:
# Node.js debugger
- 127.0.0.1:9232:9232
volumes:
- type: bind
source: ./logs/juxtaposition-ui/
target: /app/src/logs/
- type: bind
source: ./config/juxtaposition-config.js
target: /app/config.js
@ -371,9 +351,6 @@ services:
# Node.js debugger
- 127.0.0.1:9233:9233
volumes:
- type: bind
source: ./logs/boss/
target: /app/logs/
- type: bind
source: ./config/mongoose-connect-options.json
target: /home/node/app/mongoose-connect-options.json
@ -396,10 +373,6 @@ services:
- 127.0.0.1:2346:2346
# Authentication server
- 6002:6002/udp
volumes:
- type: bind
source: ./logs/wiiu-chat-authentication/
target: /app/log/
networks:
internal:
dns: 172.20.0.200
@ -419,10 +392,6 @@ services:
- 127.0.0.1:2347:2347
# Secure server
- 6003:6003/udp
volumes:
- type: bind
source: ./logs/wiiu-chat-secure/
target: /app/log/
networks:
internal:
dns: 172.20.0.200
@ -444,10 +413,6 @@ services:
- 6004:6004/udp
# Secure server
- 6005:6005/udp
volumes:
- type: bind
source: ./logs/super-mario-maker/
target: /app/log/
networks:
internal:
dns: 172.20.0.200
@ -468,10 +433,6 @@ services:
- 6006:6006/udp
# Secure server
- 6007:6007/udp
volumes:
- type: bind
source: ./logs/splatoon/
target: /app/log/
networks:
internal:
dns: 172.20.0.200

View File

View File

View File

View File

View File

View File