User Tools

Site Tools


latinet:unicaes:opendronemap:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
latinet:unicaes:opendronemap:start [2023/08/24 23:01] harley.laralatinet:unicaes:opendronemap:start [2023/08/25 21:47] (current) – removed jan.sonntag
Line 1: Line 1:
-OpenDroneMap 
  
-  - Docker and Docker Compose 
- 
-Create a docker network: 
- 
-<code> 
-docker network create nginx-network 
-</code> 
- 
-<file yml docker-compose.yml> 
-version: "3" 
- 
-services: 
-  app: 
-    image: 'jc21/nginx-proxy-manager:latest' 
-    container_name: nginx-proxy-manager 
-    restart: always 
-    ports: 
-      # These ports are in format <host-port>:<container-port> 
-      - '80:80' # Public HTTP Port 
-      - '443:443' # Public HTTPS Port 
-      - '81:81' # Admin Web Port 
-      # Add any other Stream port you want to expose 
-      # - '21:21' # FTP 
- 
-    # Uncomment the next line if you uncomment anything in the section 
-    # environment: 
-      # Uncomment this if you want to change the location of  
-      # the SQLite DB file within the container 
-      # DB_SQLITE_FILE: "/data/database.sqlite" 
- 
-      # Uncomment this if IPv6 is not enabled on your host 
-      # DISABLE_IPV6: 'true' 
- 
-    volumes: 
-      # Make sure this config.json file exists as per instructions above: 
-      - ./config.json:/app/config/production.json 
-      - data:/data 
-      - letsencrypt:/etc/letsencrypt 
-    networks: 
-      - nginx-proxy 
-    depends_on: 
-      - db-nginx 
-  db-nginx: 
-    image: 'jc21/mariadb-aria:latest' 
-    container_name: nginx-proxy-manager-db 
-    restart: always 
-    environment: 
-      MYSQL_ROOT_PASSWORD: 'npm' 
-      MYSQL_DATABASE: 'npm' 
-      MYSQL_USER: 'npm' 
-      MYSQL_PASSWORD: 'npm' 
-    volumes: 
-      - mysql:/var/lib/mysql 
-    networks: 
-      - nginx-proxy 
-volumes: 
-  mysql: 
-  data: 
-  letsencrypt: 
- 
-# Connect to existing nginx-network: `docker network create nginx-network` 
-networks: 
-  nginx-proxy: 
-    external: true 
-    name: nginx-network 
-</file> 
-<code> 
-docker compose up -d 
-</code> 
- 
- 
-Just in case: 
- 
-<file json config.json> 
-{ 
-  "database": { 
-    "engine": "mysql", 
-    "host": "nginx-proxy-manager-db", 
-    "name": "npm", 
-    "user": "npm", 
-    "password": "npm", 
-    "port": 3306 
- } 
-</file> 
- 
- 
-  - NGINX Manager 
-  - OpenDroneMap 
latinet/unicaes/opendronemap/start.1692910887.txt.gz · Last modified: 2023/08/24 23:01 by harley.lara