我对 docker、ubuntu 和使用 proxmox 和 VM 比较陌生,所以如果我弄错了术语,我深表歉意。
我目前想从安装在我的 Synology 上的 Odoo 转移到发票忍者的 Docker 实例。
我已经修改了 docker-compose.yml 文件以适应当前在端口 80 上运行的 nginx 代理管理器
server:
image: nginx
restart: always
env_file: env
volumes:
# Vhost configuration
#- ./config/caddy/Caddyfile:/etc/caddy/Caddyfiledocker-com
- ./config/nginx/in-vhost.conf:/etc/nginx/conf.d/in-vhost.conf:ro
- ./docker/app/public:/var/www/app/public:rw,delegated
- ./docker/app/storage:/var/www/app/storage:rw,delegated
depends_on:
- app
# Run webserver nginx on port 80
# Feel free to modify depending what port is already occupied
ports:
- "1111:80"
#- "443:443"
networks:
- invoiceninja
extra_hosts:
- "in5.localhost:192.168.0.124 " #host and IP
我已经在 env 文件中包含了所有相关数据
app_key= the bit generated during "docker run --rm -it invoiceninja/invoiceninja php artisan key:generate --show"
但是,当我转到我的内部 IP:1111 时,我得到“HTTP 500 内部服务器错误唯一支持的密码是具有正确密钥长度的 AES-128-CBC 和 AES-256-CBC”。
我环顾四周,看到了一个类似的例子,建议这样做
docker-compose exec app php artisan config:cache
尽管在这种情况下,我无法继续进行此设置。提前谢谢了。