fix: fixed some docker files

This commit is contained in:
Niklas 2023-10-30 00:13:36 +01:00
parent ad7fc4141e
commit 5b90f1a3b9
4 changed files with 11 additions and 1 deletions

View File

@ -20,6 +20,10 @@ This setup installs a complete local setup. Connecting externally requires editi
| CMS | http://127.0.0.1:8081 | example.com |
| Nitro Client | http://127.0.0.1:3080 | game.example.com |
```sql
UPDATE emulator_settings SET `value`='*.mc8051.de' WHERE `key`='websockets.whitelist';
```
## Build
1. Download the default assets

View File

@ -28,7 +28,7 @@ RUN composer install
# ---------------------------------------------
FROM node:lts-alpine as npm-builder
FROM node:lts as npm-builder
WORKDIR /var/www/html

View File

@ -128,6 +128,7 @@ services:
- ".cms.env:/var/www/html/.env"
- "./atomcms/storage:/var/www/html/storage/app/public"
- "./atomcms/logs:/var/www/html/storage/logs"
restart: unless-stopped
networks: [nitro]
networks:

View File

@ -9,6 +9,11 @@ RUN apt-get update && apt-get install -y \
git \
build-essential \
python3 \
libcairo2-dev \
libpango1.0-dev \
libjpeg-dev \
libgif-dev \
librsvg2-dev \
&& rm -rf /var/lib/apt/lists/*
RUN apt remove apt --autoremove -y --allow-remove-essential